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

Unified Diff: chrome/browser/extensions/api/media_galleries_private/media_galleries_private_event_router.cc

Issue 15294020: StorageMonitor: Make StorageInfo a real class. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: address nits Created 7 years, 7 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
« no previous file with comments | « no previous file | chrome/browser/extensions/api/system_info_storage/storage_info_provider.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/api/media_galleries_private/media_galleries_private_event_router.cc
===================================================================
--- chrome/browser/extensions/api/media_galleries_private/media_galleries_private_event_router.cc (revision 201619)
+++ chrome/browser/extensions/api/media_galleries_private/media_galleries_private_event_router.cc (working copy)
@@ -88,8 +88,8 @@
return;
DeviceAttachmentDetails details;
- details.device_name = UTF16ToUTF8(info.name);
- details.device_id = GetTransientIdForDeviceId(info.device_id);
+ details.device_name = UTF16ToUTF8(info.name());
+ details.device_id = GetTransientIdForDeviceId(info.device_id());
scoped_ptr<base::ListValue> args(new base::ListValue());
args->Append(details.ToValue().release());
@@ -105,7 +105,7 @@
return;
DeviceDetachmentDetails details;
- details.device_id = GetTransientIdForDeviceId(info.device_id);
+ details.device_id = GetTransientIdForDeviceId(info.device_id());
scoped_ptr<base::ListValue> args(new ListValue());
args->Append(details.ToValue().release());
« no previous file with comments | « no previous file | chrome/browser/extensions/api/system_info_storage/storage_info_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698