OLD | NEW |
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 // File-level comment to appease parser. Eventually this will not be necessary. | 5 // File-level comment to appease parser. Eventually this will not be necessary. |
6 | 6 |
7 namespace mediaGalleries { | 7 namespace mediaGalleries { |
8 | 8 |
9 [inline_doc] enum GetMediaFileSystemsInteractivity { | 9 [inline_doc] enum GetMediaFileSystemsInteractivity { |
10 // Do not act interactively. | 10 // Do not act interactively. |
11 no, | 11 no, |
12 // Ask the user to manage permitted media galleries. | 12 // Ask the user to manage permitted media galleries. |
13 yes, | 13 yes, |
14 // Ask the user to manage permitted galleries only if the return set would | 14 // Ask the user to manage permitted galleries only if the return set would |
15 // otherwise be empty. | 15 // otherwise be empty. |
16 if_needed | 16 if_needed |
17 }; | 17 }; |
18 | 18 |
19 [inline_doc] dictionary MediaFileSystemsDetails { | 19 [inline_doc] dictionary MediaFileSystemsDetails { |
20 // Whether to prompt the user for additional media galleries before | 20 // Whether to prompt the user for permission to additional media galleries |
21 // returning the permitted set. Default is silent. | 21 // before returning the permitted set. Default is silent. If the value |
| 22 // 'yes' is passed, or if the application has not been granted access to |
| 23 // any media galleries and the value 'if_needed' is passed, then the |
| 24 // media gallery configuration dialog will be displayed. |
22 GetMediaFileSystemsInteractivity? interactive; | 25 GetMediaFileSystemsInteractivity? interactive; |
23 }; | 26 }; |
24 | 27 |
25 callback MediaFileSystemsCallback = | 28 callback MediaFileSystemsCallback = |
26 void ([instanceOf=LocalFileSystem] optional object[] mediaFileSystems); | 29 void ([instanceOf=LocalFileSystem] optional object[] mediaFileSystems); |
27 | 30 |
28 interface Functions { | 31 interface Functions { |
29 // Get the media galleries configured in this user agent. If none are | 32 // Get the media galleries configured in this user agent. If none are |
30 // configured or available, the callback will receive an empty array. | 33 // configured or available, the callback will receive an empty array. |
31 static void getMediaFileSystems(optional MediaFileSystemsDetails details, | 34 static void getMediaFileSystems(optional MediaFileSystemsDetails details, |
32 MediaFileSystemsCallback callback); | 35 MediaFileSystemsCallback callback); |
33 }; | 36 }; |
34 | 37 |
35 }; | 38 }; |
OLD | NEW |