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

Unified Diff: chrome/browser/extensions/extension_rlz_module.cc

Issue 7649006: more changes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix another typo Created 9 years, 4 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/extensions/extension_rlz_module.cc
diff --git a/chrome/browser/extensions/extension_rlz_module.cc b/chrome/browser/extensions/extension_rlz_module.cc
index c789a86ab2c0e5683c8d7b8f33d1120cc1d5c35e..85375a263c5181c6e4ef27a4f9bc00ce6c85cc2a 100644
--- a/chrome/browser/extensions/extension_rlz_module.cc
+++ b/chrome/browser/extensions/extension_rlz_module.cc
@@ -109,7 +109,7 @@ bool RlzGetAccessPointRlzFunction::RunImpl() {
char rlz[rlz_lib::kMaxRlzLength + 1];
rlz_lib::GetAccessPointRlz(access_point, rlz, rlz_lib::kMaxRlzLength);
- result_.reset(Value::CreateStringValue(rlz));
+ result_.reset(base::StringValue::New(rlz));
return true;
}
@@ -170,7 +170,7 @@ bool RlzSendFinancialPingFunction::RunImpl() {
signature.c_str(), brand.c_str(),
id.c_str(), lang.c_str(),
exclude_machine_id);
- result_.reset(Value::CreateBooleanValue(sent));
+ result_.reset(base::BooleanValue::New(sent));
return true;
}

Powered by Google App Engine
This is Rietveld 408576698