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

Unified Diff: chrome/browser/storage_monitor/storage_monitor_mac.mm

Issue 113403006: Update some uses of char16 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_mac.mm
diff --git a/chrome/browser/storage_monitor/storage_monitor_mac.mm b/chrome/browser/storage_monitor/storage_monitor_mac.mm
index 16ea943c76b7311f511edbfff22212ebf180898f..a3439769d9356cae1d420c19764c6f0deb5f65fe 100644
--- a/chrome/browser/storage_monitor/storage_monitor_mac.mm
+++ b/chrome/browser/storage_monitor/storage_monitor_mac.mm
@@ -32,7 +32,7 @@ base::string16 JoinName(const base::string16& name,
return name;
if (name.empty())
return addition;
- return name + static_cast<char16>(' ') + addition;
+ return name + static_cast<base::char16>(' ') + addition;
}
StorageInfo::Type GetDeviceType(bool is_removable, bool has_dcim) {

Powered by Google App Engine
This is Rietveld 408576698