summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormtomasz <mtomasz@chromium.org>2014-10-24 00:01:29 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-24 07:01:42 +0000
commitdf17802a065102ff635313baf8586df83d9e1799 (patch)
tree98d9616a6b0da44060d6ab31b0ac8f212ddc3423
parentd0ac28b1d130afe9028b0c755bf6f5bb69e1e267 (diff)
downloadchromium_src-df17802a065102ff635313baf8586df83d9e1799.zip
chromium_src-df17802a065102ff635313baf8586df83d9e1799.tar.gz
chromium_src-df17802a065102ff635313baf8586df83d9e1799.tar.bz2
[ew] Mark APIs being in developement as nodoc.
Since the features are not ready, information about the new API should not be published on the official documentation. TEST=Tested manually with a preview server. BUG=425924 Review URL: https://codereview.chromium.org/663013004 Cr-Commit-Position: refs/heads/master@{#301069}
-rw-r--r--chrome/common/extensions/api/file_system.idl8
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/common/extensions/api/file_system.idl b/chrome/common/extensions/api/file_system.idl
index ce56768..8cb65f5 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 {