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

Unified Diff: chrome/browser/automation/testing_automation_provider_chromeos.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/automation/testing_automation_provider_chromeos.cc
diff --git a/chrome/browser/automation/testing_automation_provider_chromeos.cc b/chrome/browser/automation/testing_automation_provider_chromeos.cc
index 28f7076e1acc30be8dec0f7156b6b165ce2a74c1..e32b6bc41c2b78ef6007856f2b228ea22f19d345 100644
--- a/chrome/browser/automation/testing_automation_provider_chromeos.cc
+++ b/chrome/browser/automation/testing_automation_provider_chromeos.cc
@@ -449,7 +449,7 @@ void TestingAutomationProvider::GetNetworkInfo(DictionaryValue* args,
remembered_wifi.begin(); iter != remembered_wifi.end();
++iter) {
const chromeos::WifiNetwork* wifi = *iter;
- items->Append(Value::CreateStringValue(wifi->service_path()));
+ items->Append(base::StringValue::New(wifi->service_path()));
}
return_value->Set("remembered_wifi", items);

Powered by Google App Engine
This is Rietveld 408576698