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

Unified Diff: chrome/browser/chromeos/extensions/media_player_api.h

Issue 12089062: Move API functions registrations out of ExtensionFunctionRegistry. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/extensions/media_player_api.h
===================================================================
--- chrome/browser/chromeos/extensions/media_player_api.h (revision 181773)
+++ chrome/browser/chromeos/extensions/media_player_api.h (working copy)
@@ -19,51 +19,51 @@
class MediaPlayerEventRouter;
// Implements the chrome.mediaPlayerPrivate.play method.
-class PlayMediaplayerFunction : public SyncExtensionFunction {
+class MediaPlayerPrivatePlayFunction : public SyncExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("mediaPlayerPrivate.play", MEDIAPLAYERPRIVATE_PLAY)
protected:
- virtual ~PlayMediaplayerFunction() {}
+ virtual ~MediaPlayerPrivatePlayFunction() {}
// SyncExtensionFunction overrides.
virtual bool RunImpl() OVERRIDE;
};
// Implements the chrome.mediaPlayerPrivate.getPlaylist method.
-class GetPlaylistMediaplayerFunction : public SyncExtensionFunction {
+class MediaPlayerPrivateGetPlaylistFunction : public SyncExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("mediaPlayerPrivate.getPlaylist",
MEDIAPLAYERPRIVATE_GETPLAYLIST)
protected:
- virtual ~GetPlaylistMediaplayerFunction() {}
+ virtual ~MediaPlayerPrivateGetPlaylistFunction() {}
// SyncExtensionFunction overrides.
virtual bool RunImpl() OVERRIDE;
};
// Implements the chrome.mediaPlayerPrivate.setWindowHeight method.
-class SetWindowHeightMediaplayerFunction : public SyncExtensionFunction {
+class MediaPlayerPrivateSetWindowHeightFunction : public SyncExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("mediaPlayerPrivate.setWindowHeight",
MEDIAPLAYERPRIVATE_SETWINDOWHEIGHT)
protected:
- virtual ~SetWindowHeightMediaplayerFunction() {}
+ virtual ~MediaPlayerPrivateSetWindowHeightFunction() {}
// SyncExtensionFunction overrides.
virtual bool RunImpl() OVERRIDE;
};
// Implements the chrome.mediaPlayerPrivate.closeWindow method.
-class CloseWindowMediaplayerFunction : public SyncExtensionFunction {
+class MediaPlayerPrivateCloseWindowFunction : public SyncExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("mediaPlayerPrivate.closeWindow",
MEDIAPLAYERPRIVATE_CLOSEWINDOW)
protected:
- virtual ~CloseWindowMediaplayerFunction() {}
+ virtual ~MediaPlayerPrivateCloseWindowFunction() {}
// SyncExtensionFunction overrides.
virtual bool RunImpl() OVERRIDE;
« no previous file with comments | « chrome/browser/chromeos/extensions/info_private_api.cc ('k') | chrome/browser/chromeos/extensions/media_player_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698