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

Unified Diff: ppapi/proxy/flash_device_id_resource.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/proxy/flash_device_id_resource.h ('k') | ppapi/proxy/interface_list.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/flash_device_id_resource.cc
diff --git a/ppapi/proxy/flash_device_id_resource.cc b/ppapi/proxy/flash_device_id_resource.cc
new file mode 100644
index 0000000000000000000000000000000000000000..39ff63bb7c35215d2280e0f591b2c2d6b7c34049
--- /dev/null
+++ b/ppapi/proxy/flash_device_id_resource.cc
@@ -0,0 +1,67 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "ppapi/proxy/flash_device_id_resource.h"
+
+#include "ppapi/c/pp_errors.h"
+#include "ppapi/proxy/dispatch_reply_message.h"
+#include "ppapi/proxy/ppapi_messages.h"
+#include "ppapi/shared_impl/var.h"
+
+namespace ppapi {
+namespace proxy {
+
+FlashDeviceIDResource::FlashDeviceIDResource(Connection connection,
+ PP_Instance instance)
+ : PluginResource(connection, instance),
+ dest_(NULL) {
+ SendCreateToBrowser(PpapiHostMsg_FlashDeviceID_Create());
+}
+
+FlashDeviceIDResource::~FlashDeviceIDResource() {
+}
+
+thunk::PPB_Flash_DeviceID_API*
+FlashDeviceIDResource::AsPPB_Flash_DeviceID_API() {
+ return this;
+}
+
+int32_t FlashDeviceIDResource::GetDeviceID(
+ PP_Var* id,
+ scoped_refptr<TrackedCallback> callback) {
+ if (TrackedCallback::IsPending(callback_))
+ return PP_ERROR_INPROGRESS;
+ if (!id)
+ return PP_ERROR_BADARGUMENT;
+
+ dest_ = id;
+ callback_ = callback;
+
+ CallBrowser(PpapiHostMsg_FlashDeviceID_GetDeviceID());
+ return PP_OK_COMPLETIONPENDING;
+}
+
+void FlashDeviceIDResource::OnReplyReceived(
+ const ResourceMessageReplyParams& params,
+ const IPC::Message& msg) {
+ IPC_BEGIN_MESSAGE_MAP(FlashDeviceIDResource, msg)
+ PPAPI_DISPATCH_RESOURCE_REPLY(
+ PpapiPluginMsg_FlashDeviceID_GetDeviceIDReply,
+ OnPluginMsgGetDeviceIDReply)
+ IPC_END_MESSAGE_MAP()
+}
+
+void FlashDeviceIDResource::OnPluginMsgGetDeviceIDReply(
+ const ResourceMessageReplyParams& params,
+ const std::string& id) {
+ if (params.result() == PP_OK)
+ *dest_ = StringVar::StringToPPVar(id);
+ else
+ *dest_ = PP_MakeUndefined();
+ dest_ = NULL;
+ TrackedCallback::ClearAndRun(&callback_, params.result());
+}
+
+} // namespace proxy
+} // namespace ppapi
« no previous file with comments | « ppapi/proxy/flash_device_id_resource.h ('k') | ppapi/proxy/interface_list.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698