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

Unified Diff: chrome/browser/storage_monitor/storage_monitor_linux.cc

Issue 120983002: Update some uses of UTF conversions in chrome/browser to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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/storage_monitor/storage_monitor_linux.cc
diff --git a/chrome/browser/storage_monitor/storage_monitor_linux.cc b/chrome/browser/storage_monitor/storage_monitor_linux.cc
index 5c5816f4e0b8833516ac865a7a0aeba062634e8b..5e2cba15c5f5085077faea701bb6187c3be08df6 100644
--- a/chrome/browser/storage_monitor/storage_monitor_linux.cc
+++ b/chrome/browser/storage_monitor/storage_monitor_linux.cc
@@ -144,11 +144,11 @@ scoped_ptr<StorageInfo> GetDeviceInfo(const base::FilePath& device_path,
return storage_info.Pass();
base::string16 volume_label =
- UTF8ToUTF16(GetUdevDevicePropertyValue(device.get(), kLabel));
+ base::UTF8ToUTF16(GetUdevDevicePropertyValue(device.get(), kLabel));
base::string16 vendor_name =
- UTF8ToUTF16(GetUdevDevicePropertyValue(device.get(), kVendor));
+ base::UTF8ToUTF16(GetUdevDevicePropertyValue(device.get(), kVendor));
base::string16 model_name =
- UTF8ToUTF16(GetUdevDevicePropertyValue(device.get(), kModel));
+ base::UTF8ToUTF16(GetUdevDevicePropertyValue(device.get(), kModel));
std::string unique_id = MakeDeviceUniqueId(device.get());

Powered by Google App Engine
This is Rietveld 408576698