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

Unified Diff: chrome/browser/chromeos/extensions/info_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/info_private_api.cc
===================================================================
--- chrome/browser/chromeos/extensions/info_private_api.cc (revision 181773)
+++ chrome/browser/chromeos/extensions/info_private_api.cc (working copy)
@@ -41,13 +41,13 @@
} // namespace
-GetChromeosInfoFunction::GetChromeosInfoFunction() {
+ChromeosInfoPrivateGetFunction::ChromeosInfoPrivateGetFunction() {
}
-GetChromeosInfoFunction::~GetChromeosInfoFunction() {
+ChromeosInfoPrivateGetFunction::~ChromeosInfoPrivateGetFunction() {
}
-bool GetChromeosInfoFunction::RunImpl() {
+bool ChromeosInfoPrivateGetFunction::RunImpl() {
ListValue* list = NULL;
EXTENSION_FUNCTION_VALIDATE(args_->GetList(0, &list));
scoped_ptr<DictionaryValue> result(new DictionaryValue());
@@ -63,7 +63,7 @@
return true;
}
-base::Value* GetChromeosInfoFunction::GetValue(
+base::Value* ChromeosInfoPrivateGetFunction::GetValue(
const std::string& property_name) {
if (property_name == kPropertyHWID) {
std::string hwid;
« no previous file with comments | « chrome/browser/chromeos/extensions/info_private_api.h ('k') | chrome/browser/chromeos/extensions/media_player_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698