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

Unified Diff: chrome/browser/storage_monitor/storage_monitor.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.cc
diff --git a/chrome/browser/storage_monitor/storage_monitor.cc b/chrome/browser/storage_monitor/storage_monitor.cc
index 9f9d4c26808fe651a360b720aa863586cdd26e80..380412d6491b4a9f0a419d14dd2a0ce92b1035f4 100644
--- a/chrome/browser/storage_monitor/storage_monitor.cc
+++ b/chrome/browser/storage_monitor/storage_monitor.cc
@@ -147,7 +147,7 @@ void StorageMonitor::ProcessAttach(const StorageInfo& info) {
storage_map_.insert(std::make_pair(info.device_id(), info));
}
- DVLOG(1) << "StorageAttached with name " << UTF16ToUTF8(info.name())
+ DVLOG(1) << "StorageAttached with name " << base::UTF16ToUTF8(info.name())
<< " and id " << info.device_id();
if (StorageInfo::IsRemovableDevice(info.device_id())) {
observer_list_->Notify(

Powered by Google App Engine
This is Rietveld 408576698