Skip to content

Commit

Permalink
Bug 1295570 - Entries API - part 8 - Remove [NoInterfaceObject], r=smaug
Browse files Browse the repository at this point in the history
  • Loading branch information
bakulf committed Aug 18, 2016
1 parent 0ab7a88 commit 84f0434
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 deletions.
10 changes: 10 additions & 0 deletions dom/tests/mochitest/general/test_interfaces.html
Original file line number Diff line number Diff line change
Expand Up @@ -486,6 +486,16 @@
"FileList",
// IMPORTANT: Do not change this list without review from a DOM peer!
"FileReader",
// IMPORTANT: Do not change this list without review from a DOM peer!
"FileSystem",
// IMPORTANT: Do not change this list without review from a DOM peer!
"FileSystemDirectoryEntry",
// IMPORTANT: Do not change this list without review from a DOM peer!
"FileSystemDirectoryReader",
// IMPORTANT: Do not change this list without review from a DOM peer!
"FileSystemEntry",
// IMPORTANT: Do not change this list without review from a DOM peer!
"FileSystemFileEntry",
// IMPORTANT: Do not change this list without review from a DOM peer!
{name: "FMRadio", b2g: true},
// IMPORTANT: Do not change this list without review from a DOM peer!
Expand Down
1 change: 0 additions & 1 deletion dom/webidl/FileSystem.webidl
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ callback interface ErrorCallback {
void handleEvent(DOMError error);
};

[NoInterfaceObject]
interface FileSystem {
readonly attribute DOMString name;
readonly attribute FileSystemDirectoryEntry root;
Expand Down
1 change: 0 additions & 1 deletion dom/webidl/FileSystemDirectoryEntry.webidl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
* You can obtain one at http://mozilla.org/MPL/2.0/.
*/

[NoInterfaceObject]
interface FileSystemDirectoryEntry : FileSystemEntry {
FileSystemDirectoryReader createReader();

Expand Down
1 change: 0 additions & 1 deletion dom/webidl/FileSystemDirectoryReader.webidl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ callback interface FileSystemEntriesCallback {
void handleEvent(sequence<FileSystemEntry> entries);
};

[NoInterfaceObject]
interface FileSystemDirectoryReader {

// readEntries can be called just once. The second time it returns no data.
Expand Down
1 change: 0 additions & 1 deletion dom/webidl/FileSystemEntry.webidl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
* You can obtain one at http://mozilla.org/MPL/2.0/.
*/

[NoInterfaceObject]
interface FileSystemEntry {
readonly attribute boolean isFile;
readonly attribute boolean isDirectory;
Expand Down
1 change: 0 additions & 1 deletion dom/webidl/FileSystemFileEntry.webidl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ callback interface BlobCallback {
void handleEvent(Blob? blob);
};

[NoInterfaceObject]
interface FileSystemFileEntry : FileSystemEntry {
// the successCallback should be a FileWriteCallback but this method is not
// implemented. ErrorCallback will be called with
Expand Down

0 comments on commit 84f0434

Please sign in to comment.