| Index: chrome/browser/storage_monitor/portable_device_watcher_win.cc
|
| diff --git a/chrome/browser/storage_monitor/portable_device_watcher_win.cc b/chrome/browser/storage_monitor/portable_device_watcher_win.cc
|
| index 0efc31996d0cc0927836869bc1022dad2bf57160..bef912d2cc052cba9f6c042a7c9cc2f6f4170526 100644
|
| --- a/chrome/browser/storage_monitor/portable_device_watcher_win.cc
|
| +++ b/chrome/browser/storage_monitor/portable_device_watcher_win.cc
|
| @@ -250,7 +250,7 @@ bool ConstructDeviceStorageUniqueId(const base::string16& device_serial_num,
|
| DCHECK(device_storage_id);
|
| *device_storage_id = StorageInfo::MakeDeviceId(
|
| StorageInfo::MTP_OR_PTP,
|
| - UTF16ToUTF8(storage_id + L':' + device_serial_num));
|
| + base::UTF16ToUTF8(storage_id + L':' + device_serial_num));
|
| return true;
|
| }
|
|
|
| @@ -542,7 +542,7 @@ base::string16 PortableDeviceWatcherWin::GetStoragePathFromStorageId(
|
| // Construct a dummy device path using the storage name. This is only used
|
| // for registering the device media file system.
|
| DCHECK(!storage_unique_id.empty());
|
| - return UTF8ToUTF16("\\\\" + storage_unique_id);
|
| + return base::UTF8ToUTF16("\\\\" + storage_unique_id);
|
| }
|
|
|
| void PortableDeviceWatcherWin::SetNotifications(
|
|
|