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

Unified Diff: ppapi/thunk/ppb_flash_device_id_thunk.cc

Issue 10909138: Convert the async device ID getter to a chrome resource host (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 3 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 | « ppapi/thunk/ppb_flash_device_id_api.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/thunk/ppb_flash_device_id_thunk.cc
diff --git a/ppapi/thunk/ppb_flash_device_id_thunk.cc b/ppapi/thunk/ppb_flash_device_id_thunk.cc
index 9275648502749d3b6220818f4b419bc1f3cced0c..498df75cb17696b3d7dc88e7af213c73e880e553 100644
--- a/ppapi/thunk/ppb_flash_device_id_thunk.cc
+++ b/ppapi/thunk/ppb_flash_device_id_thunk.cc
@@ -26,7 +26,7 @@ int32_t GetDeviceID(PP_Resource resource,
EnterResource<PPB_Flash_DeviceID_API> enter(resource, callback, true);
if (enter.failed())
return enter.retval();
- return enter.SetResult(enter.object()->GetDeviceID(id, callback));
+ return enter.SetResult(enter.object()->GetDeviceID(id, enter.callback()));
}
const PPB_Flash_DeviceID g_ppb_flash_deviceid_thunk = {
« no previous file with comments | « ppapi/thunk/ppb_flash_device_id_api.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698