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

Unified Diff: chrome/common/extensions/api/media_galleries_private.idl

Issue 338473003: Remove media_galleries_handlers - not used. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 6 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 side-by-side diff with in-line comments
Download patch
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);
};
};

Powered by Google App Engine
This is Rietveld 408576698