| Index: chrome/common/extensions/api/media_galleries_private.idl
|
| diff --git a/chrome/common/extensions/api/media_galleries_private.idl b/chrome/common/extensions/api/media_galleries_private.idl
|
| index 64312a5bc09b1c9eb6b2d2c9fe44ded3a6a12f5a..8658d25dd6b3256f705d09db9dbda8a2b4d7bd03 100644
|
| --- a/chrome/common/extensions/api/media_galleries_private.idl
|
| +++ b/chrome/common/extensions/api/media_galleries_private.idl
|
| @@ -26,29 +26,11 @@ namespace mediaGalleriesPrivate {
|
| callback AddGalleryWatchCallback = void (AddGalleryWatchResult result);
|
| callback GetAllGalleryWatchCallback = void (DOMString[] galleryIds);
|
|
|
| - // A dictionary that describes a media galleries handler.
|
| - [inline_doc] dictionary MediaGalleriesHandler {
|
| - // Unique action id per extension.
|
| - DOMString id;
|
| -
|
| - // ID of the extension handling this handler.
|
| - DOMString extensionId;
|
| -
|
| - // Localized title describing the action.
|
| - DOMString title;
|
| -
|
| - // Url of the icon.
|
| - DOMString iconUrl;
|
| - };
|
| -
|
| - callback GetHandlersCallback = void (MediaGalleriesHandler[] handlers);
|
| -
|
| interface Functions {
|
| static void addGalleryWatch(DOMString galleryId,
|
| AddGalleryWatchCallback callback);
|
| static void removeGalleryWatch(DOMString galleryId);
|
| static void getAllGalleryWatch(GetAllGalleryWatchCallback callback);
|
| static void removeAllGalleryWatch();
|
| - static void getHandlers(GetHandlersCallback callback);
|
| };
|
| };
|
|
|