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

Unified Diff: chrome/browser/storage_monitor/test_volume_mount_watcher_win.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/test_volume_mount_watcher_win.cc
diff --git a/chrome/browser/storage_monitor/test_volume_mount_watcher_win.cc b/chrome/browser/storage_monitor/test_volume_mount_watcher_win.cc
index d63cfc596b54c7006ef56bf509ef086ad2bd026e..151bc1fca10103d58ca505cbcd6e1245593acb08 100644
--- a/chrome/browser/storage_monitor/test_volume_mount_watcher_win.cc
+++ b/chrome/browser/storage_monitor/test_volume_mount_watcher_win.cc
@@ -64,8 +64,8 @@ bool GetMassStorageDeviceDetails(const base::FilePath& device_path,
return false;
StorageInfo::Type type = StorageInfo::FIXED_MASS_STORAGE;
- if (path.value() != ASCIIToUTF16("N:\\") &&
- path.value() != ASCIIToUTF16("C:\\") &&
+ if (path.value() != base::ASCIIToUTF16("N:\\") &&
+ path.value() != base::ASCIIToUTF16("C:\\") &&
path.value() != GetTempRoot().value()) {
type = StorageInfo::REMOVABLE_MASS_STORAGE_WITH_DCIM;
}

Powered by Google App Engine
This is Rietveld 408576698