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

Unified Diff: chrome/browser/automation/testing_automation_provider_chromeos.cc

Issue 12767006: [Cleanup] Remove StringPrintf from global namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase, once more Created 7 years, 9 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 34f785fb6efa9fa2b04fb04cb7588e2c766466c0..999c28aca7accd8b5a4808785ccf3fc8f1b6136a 100644
--- a/chrome/browser/automation/testing_automation_provider_chromeos.cc
+++ b/chrome/browser/automation/testing_automation_provider_chromeos.cc
@@ -1067,8 +1067,8 @@ void TestingAutomationProvider::ConnectToPrivateNetwork(
chromeos::VirtualNetwork* network =
network_library->FindVirtualNetworkByPath(service_path);
if (!network) {
- reply.SendError(StringPrintf("No virtual network found: %s",
- service_path.c_str()));
+ reply.SendError(base::StringPrintf("No virtual network found: %s",
+ service_path.c_str()));
return;
}
if (network->NeedMoreInfoToConnect()) {

Powered by Google App Engine
This is Rietveld 408576698