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

Unified Diff: chrome/browser/chromeos/extensions/echo_private_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/echo_private_api.h
===================================================================
--- chrome/browser/chromeos/extensions/echo_private_api.h (revision 181773)
+++ chrome/browser/chromeos/extensions/echo_private_api.h (working copy)
@@ -8,12 +8,12 @@
#include "base/compiler_specific.h"
#include "chrome/browser/extensions/extension_function.h"
-class GetRegistrationCodeFunction : public AsyncExtensionFunction {
+class EchoPrivateGetRegistrationCodeFunction : public SyncExtensionFunction {
public:
- GetRegistrationCodeFunction();
+ EchoPrivateGetRegistrationCodeFunction();
protected:
- virtual ~GetRegistrationCodeFunction();
+ virtual ~EchoPrivateGetRegistrationCodeFunction();
virtual bool RunImpl() OVERRIDE;
private:
@@ -22,12 +22,12 @@
ECHOPRIVATE_GETREGISTRATIONCODE)
};
-class GetOobeTimestampFunction : public AsyncExtensionFunction {
+class EchoPrivateGetOobeTimestampFunction : public AsyncExtensionFunction {
public:
- GetOobeTimestampFunction();
+ EchoPrivateGetOobeTimestampFunction();
protected:
- virtual ~GetOobeTimestampFunction();
+ virtual ~EchoPrivateGetOobeTimestampFunction();
virtual bool RunImpl() OVERRIDE;
private:
@@ -36,12 +36,13 @@
ECHOPRIVATE_GETOOBETIMESTAMP)
};
-class CheckAllowRedeemOffersFunction : public AsyncExtensionFunction {
+class EchoPrivateCheckAllowRedeemOffersFunction
+ : public AsyncExtensionFunction {
public:
- CheckAllowRedeemOffersFunction();
+ EchoPrivateCheckAllowRedeemOffersFunction();
protected:
- virtual ~CheckAllowRedeemOffersFunction();
+ virtual ~EchoPrivateCheckAllowRedeemOffersFunction();
virtual bool RunImpl() OVERRIDE;
private:
« no previous file with comments | « chrome/browser/accessibility/accessibility_extension_api.cc ('k') | chrome/browser/chromeos/extensions/echo_private_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698