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

Unified Diff: chrome/browser/extensions/api/system_info_storage/test_storage_info_provider.cc

Issue 19489006: Media Galleries: Move gallery name generation back to StorageMonitor. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 5 months 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/extensions/api/system_info_storage/test_storage_info_provider.cc
===================================================================
--- chrome/browser/extensions/api/system_info_storage/test_storage_info_provider.cc (revision 213035)
+++ chrome/browser/extensions/api/system_info_storage/test_storage_info_provider.cc (working copy)
@@ -31,11 +31,10 @@
const TestStorageUnitInfo& unit) {
chrome::StorageInfo info(
unit.device_id,
- UTF8ToUTF16(unit.name),
base::FilePath::StringType(), /* no location */
- string16(), /* no storage label */
- string16(), /* no storage vendor */
- string16(), /* no storage model */
+ base::UTF8ToUTF16(unit.name), /* storage label */
+ base::string16(), /* no storage vendor */
+ base::string16(), /* no storage model */
unit.capacity);
return info;
}

Powered by Google App Engine
This is Rietveld 408576698