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

Side by Side Diff: third_party/chrome/idl/media_galleries_private.idl

Issue 12261015: Import chrome idl into third_party (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 // This is a private API for M23. This will be superceded by the
6 // systeminfo.storage API in M24.
7
8 namespace mediaGalleriesPrivate {
9 // A dictionary that describes an attached device.
10 [inline_doc] dictionary DeviceAttachmentDetails {
11 // The name of the device.
12 DOMString deviceName;
13
14 // A transient id that unique identifies the device.
15 DOMString deviceId;
16 };
17
18 // A dictionary that describes a detached device.
19 [inline_doc] dictionary DeviceDetachmentDetails {
20 // A transient id that unique identifies the device.
21 DOMString deviceId;
22 };
23
24 // A dictionary that describes the modified gallery.
25 [inline_doc] dictionary GalleryChangeDetails {
26 // Gallery identifier.
27 long galleryId;
28 };
29
30 interface Events {
31 // Fired when a media device gets attached.
32 static void onDeviceAttached(DeviceAttachmentDetails details);
33
34 // Fired when a media device gets detached.
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 long galleryId;
44 boolean success;
45 };
46
47 callback AddGalleryWatchCallback = void (AddGalleryWatchResult result);
48
49 interface Functions {
50 static void addGalleryWatch(long galleryId,
51 AddGalleryWatchCallback callback);
52 static void removeGalleryWatch(long galleryId);
53 };
54 };
OLDNEW
« no previous file with comments | « third_party/chrome/idl/media_galleries.idl ('k') | third_party/chrome/idl/media_player_private.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698