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

Unified Diff: chrome/browser/chromeos/dbus/printer_service_provider.cc

Issue 1171973003: Move StringToUpperASCII to base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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
« no previous file with comments | « base/strings/string_util_unittest.cc ('k') | chrome/browser/chromeos/input_method/input_method_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/dbus/printer_service_provider.cc
diff --git a/chrome/browser/chromeos/dbus/printer_service_provider.cc b/chrome/browser/chromeos/dbus/printer_service_provider.cc
index 71edd30cf0c965a6002f081b246fbd8ad7a0e639..4c4c4cc5abe0eeadc741667a23f2446cd0e5216e 100644
--- a/chrome/browser/chromeos/dbus/printer_service_provider.cc
+++ b/chrome/browser/chromeos/dbus/printer_service_provider.cc
@@ -317,11 +317,11 @@ void PrinterServiceProvider::PrinterAdded(
std::string vendor_id;
reader.PopString(&vendor_id);
- StringToUpperASCII(&vendor_id);
+ base::StringToUpperASCII(&vendor_id);
std::string product_id;
reader.PopString(&product_id);
- StringToUpperASCII(&product_id);
+ base::StringToUpperASCII(&product_id);
// Send an empty response.
response_sender.Run(dbus::Response::FromMethodCall(method_call));
« no previous file with comments | « base/strings/string_util_unittest.cc ('k') | chrome/browser/chromeos/input_method/input_method_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698