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 // This is a private API for M23. This will be superceded by the | 5 // This is a private API for M23. This will be superceded by the |
6 // systeminfo.storage API in M24. | 6 // systeminfo.storage API in M24. |
7 | 7 |
8 namespace mediaGalleriesPrivate { | 8 namespace mediaGalleriesPrivate { |
9 // A dictionary that describes an attached device. | 9 // A dictionary that describes an attached device. |
10 [inline_doc] dictionary DeviceAttachmentDetails { | 10 [inline_doc] dictionary DeviceAttachmentDetails { |
11 // The name of the device. | 11 // The name of the device. |
12 DOMString deviceName; | 12 DOMString deviceName; |
13 | 13 |
14 // A transient id that unique identifies the device. | 14 // A transient id that unique identifies the device. |
15 DOMString deviceId; | 15 DOMString deviceId; |
16 }; | 16 }; |
17 | 17 |
18 // A dictionary that describes a detached device. | 18 // A dictionary that describes a detached device. |
19 [inline_doc] dictionary DeviceDetachmentDetails { | 19 [inline_doc] dictionary DeviceDetachmentDetails { |
20 // A transient id that unique identifies the device. | 20 // A transient id that unique identifies the device. |
21 DOMString deviceId; | 21 DOMString deviceId; |
22 }; | 22 }; |
23 | 23 |
24 // A dictionary that describes the modified gallery. | |
25 [inline_doc] dictionary GalleryChangeDetails { | |
26 // Gallery identifier. | |
27 DOMString galleryId; | |
Lei Zhang
2012/12/18 00:47:01
Can't you make galleryId a long in the IDL file he
kmadhusu
2012/12/18 21:32:39
Done.
| |
28 }; | |
29 | |
24 interface Events { | 30 interface Events { |
25 // Fired when a media device gets attached. | 31 // Fired when a media device gets attached. |
26 static void onDeviceAttached(DeviceAttachmentDetails details); | 32 static void onDeviceAttached(DeviceAttachmentDetails details); |
27 | 33 |
28 // Fired when a media device gets detached. | 34 // Fired when a media device gets detached. |
29 static void onDeviceDetached(DeviceDetachmentDetails details); | 35 static void onDeviceDetached(DeviceDetachmentDetails details); |
36 | |
37 // Fired when a media gallery is changed. | |
38 static void onGalleryChanged(GalleryChangeDetails details); | |
39 }; | |
40 | |
41 // A dictionary that describes the add gallery watch request results. | |
42 dictionary AddGalleryWatchResult { | |
43 DOMString galleryId; | |
44 boolean success; | |
45 }; | |
46 | |
47 callback AddGalleryWatchCallback = void (AddGalleryWatchResult result); | |
48 | |
49 interface Functions { | |
50 static void addGalleryWatch(DOMString galleryId, | |
51 AddGalleryWatchCallback callback); | |
52 static void removeGalleryWatch(DOMString galleryId); | |
30 }; | 53 }; |
31 }; | 54 }; |
OLD | NEW |