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

Side by Side Diff: chrome/common/extensions/api/file_system_provider_internal.idl

Issue 216583002: [fsp] Use types from another namespaces in IDL. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/chromeos/extensions/file_system_provider/file_system_provider_api.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 // Internal, used by fileSystemProvider's custom bindings. These functions are 5 // Internal, used by fileSystemProvider's custom bindings. These functions are
6 // called when events' callbacks are invoked. 6 // called when events' callbacks are invoked.
7 [platforms=("chromeos"), 7 [platforms=("chromeos"),
8 implemented_in="chrome/browser/chromeos/extensions/file_system_provider/file_sy stem_provider_api.h"] 8 implemented_in="chrome/browser/chromeos/extensions/file_system_provider/file_sy stem_provider_api.h"]
9 namespace fileSystemProviderInternal { 9 namespace fileSystemProviderInternal {
10 interface Functions { 10 interface Functions {
11 // Internal. Success callback of the <code>onUnmountRequested</code> 11 // Internal. Success callback of the <code>onUnmountRequested</code>
12 // event. Must be called when unmounting is completed. 12 // event. Must be called when unmounting is completed.
13 static void unmountRequestedSuccess(long fileSystemId, 13 static void unmountRequestedSuccess(long fileSystemId,
14 long requestId); 14 long requestId);
15 15
16 // Internal. Error callback of the <code>onUnmountRequested</code> 16 // Internal. Error callback of the <code>onUnmountRequested</code>
17 // event. Must be called if unmounting fails. 17 // event. Must be called if unmounting fails.
18 static void unmountRequestedError( 18 static void unmountRequestedError(
19 long fileSystemId, 19 long fileSystemId,
20 long requestId, 20 long requestId,
21 // TODO(mtomasz): Use FileSystemProvider::ProviderError when namespaces 21 fileSystemProvider.ProviderError error);
22 // are fully implemented in IDL.
23 DOMString error);
24 }; 22 };
25 }; 23 };
26 24
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/extensions/file_system_provider/file_system_provider_api.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698