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

Unified Diff: chrome/browser/extensions/api/system_storage/storage_api_test_util.cc

Issue 19489006: Media Galleries: Move gallery name generation back to StorageMonitor. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: rebase Created 7 years, 4 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_storage/storage_api_test_util.cc
===================================================================
--- chrome/browser/extensions/api/system_storage/storage_api_test_util.cc (revision 218837)
+++ chrome/browser/extensions/api/system_storage/storage_api_test_util.cc (working copy)
@@ -17,11 +17,10 @@
const TestStorageUnitInfo& unit) {
return chrome::StorageInfo(
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);
}

Powered by Google App Engine
This is Rietveld 408576698