| 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 ef550cc8831a5bb8c7932131f57f3fb034ad174d..6af6ef2a8e43c8e5ad1b61a8c9cf2b44a7bdf19e 100644
|
| --- a/chrome/common/extensions/api/file_system.idl
|
| +++ b/chrome/common/extensions/api/file_system.idl
|
| @@ -107,12 +107,11 @@ namespace fileSystem {
|
| EntriesCallback callback);
|
|
|
| // Returns the file entry with the given id if it can be restored. This call
|
| - // will fail with a runtime error otherwise. This method is new in Chrome
|
| - // 31.
|
| + // will fail with a runtime error otherwise.
|
| static void restoreEntry(DOMString id, EntryCallback callback);
|
|
|
| // Returns whether the app has permission to restore the entry with the
|
| - // given id. This method is new in Chrome 31.
|
| + // given id.
|
| static void isRestorable(DOMString id, IsRestorableCallback callback);
|
|
|
| // Returns an id that can be passed to restoreEntry to regain access to a
|
| @@ -120,7 +119,7 @@ namespace fileSystem {
|
| // where calls to retainEntry and restoreEntry count as use. If the app has
|
| // the 'retainEntries' permission under 'fileSystem', entries are retained
|
| // indefinitely. Otherwise, entries are retained only while the app is
|
| - // running and across restarts. This method is new in Chrome 31.
|
| + // running and across restarts.
|
| static DOMString retainEntry([instanceOf=Entry] object entry);
|
| };
|
| };
|
|
|