Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2009)

Unified Diff: chrome/common/extensions/api/file_system.idl

Issue 663013004: [ew] Mark APIs being in developement as nodoc. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed. Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/api/file_system.idl
diff --git a/chrome/common/extensions/api/file_system.idl b/chrome/common/extensions/api/file_system.idl
index ce56768fc01c72289d7edce0b21557b6e9dc83ec..8cb65f50b31af26593f4ded3b3bbf850f1764113 100644
--- a/chrome/common/extensions/api/file_system.idl
+++ b/chrome/common/extensions/api/file_system.idl
@@ -84,14 +84,14 @@ namespace fileSystem {
};
// Change to an entry within a tracked directory.
- dictionary ChildChange {
+ [nodoc] dictionary ChildChange {
[instanceOf=Entry] object entry;
ChildChangeType type;
};
// Event notifying about a change in a file or a directory, including its
// contents.
- dictionary EntryChangedEvent {
+ [nodoc] dictionary EntryChangedEvent {
// Tracked entry.
[instanceOf=Entry] object target;
@@ -101,7 +101,7 @@ namespace fileSystem {
};
// Event notifying about a tracked file or a directory being removed.
- dictionary EntryRemovedEvent {
+ [nodoc] dictionary EntryRemovedEvent {
[instanceOf=Entry] object target;
};
@@ -112,7 +112,7 @@ namespace fileSystem {
[instanceOf=FileEntry] optional object[] fileEntries);
callback IsWritableCallback = void (boolean isWritable);
callback IsRestorableCallback = void (boolean isRestorable);
- callback GetObservedEntriesCallback = void (
+ [nodoc] callback GetObservedEntriesCallback = void (
[instanceOf=Entry] object[] entries);
interface Functions {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698