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

Unified Diff: chrome/browser/chromeos/extensions/echo_private_api.cc

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.cc
===================================================================
--- chrome/browser/chromeos/extensions/echo_private_api.cc (revision 179687)
+++ chrome/browser/chromeos/extensions/echo_private_api.cc (working copy)
@@ -40,13 +40,13 @@
} // namespace
-GetRegistrationCodeFunction::GetRegistrationCodeFunction() {
-}
+EchoPrivateGetRegistrationCodeFunction::
+ EchoPrivateGetRegistrationCodeFunction() {}
-GetRegistrationCodeFunction::~GetRegistrationCodeFunction() {
-}
+EchoPrivateGetRegistrationCodeFunction::
+ ~EchoPrivateGetRegistrationCodeFunction() {}
-bool GetRegistrationCodeFunction::RunImpl() {
+bool EchoPrivateGetRegistrationCodeFunction::RunImpl() {
std::string type;
EXTENSION_FUNCTION_VALIDATE(args_->GetString(0, &type));
SetResult(GetValueForRegistrationCodeType(type));

Powered by Google App Engine
This is Rietveld 408576698