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

Side by Side Diff: extensions/common/api/file_system.idl

Issue 2934143002: Move chrome.fileSystem implementation to //extensions (Closed)
Patch Set: . Created 3 years, 6 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Use the <code>chrome.fileSystem</code> API to create, read, navigate, 5 // Use the <code>chrome.fileSystem</code> API to create, read, navigate,
6 // and write to the user's local file system. With this API, Chrome Apps can 6 // and write to the user's local file system. With this API, Chrome Apps can
7 // read and write to a user-selected location. For example, a text editor app 7 // read and write to a user-selected location. For example, a text editor app
8 // can use the API to read and write local documents. All failures are notified 8 // can use the API to read and write local documents. All failures are notified
9 // via chrome.runtime.lastError. 9 // via chrome.runtime.lastError.
10 namespace fileSystem { 10 namespace fileSystem {
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 // Called when a list of available volumes is changed. 225 // Called when a list of available volumes is changed.
226 static void onVolumeListChanged(VolumeListChangedEvent event); 226 static void onVolumeListChanged(VolumeListChangedEvent event);
227 227
228 // Called when an observed entry is changed. 228 // Called when an observed entry is changed.
229 [nodoc] static void onEntryChanged(EntryChangedEvent event); 229 [nodoc] static void onEntryChanged(EntryChangedEvent event);
230 230
231 // Called when an observed entry is removed. 231 // Called when an observed entry is removed.
232 [nodoc] static void onEntryRemoved(EntryRemovedEvent event); 232 [nodoc] static void onEntryRemoved(EntryRemovedEvent event);
233 }; 233 };
234 }; 234 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698