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

Unified Diff: ppapi/cpp/private/flash_device_id.cc

Issue 10535062: Add an asynchronous version of the Flash DeviceID API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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: ppapi/cpp/private/flash_device_id.cc
diff --git a/ppapi/cpp/private/flash_device_id.cc b/ppapi/cpp/private/flash_device_id.cc
new file mode 100644
index 0000000000000000000000000000000000000000..6ed893573ec75f8aefb87ea7393db1e4713ee234
--- /dev/null
+++ b/ppapi/cpp/private/flash_device_id.cc
@@ -0,0 +1,45 @@
+// 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/cpp/private/flash_device_id.h"
+
+#include "ppapi/c/pp_errors.h"
+#include "ppapi/c/private/ppb_flash_device_id.h"
+#include "ppapi/cpp/module_impl.h"
+
+namespace pp {
+
+namespace {
+
+template <> const char* interface_name<PPB_Flash_DeviceID_1_0>() {
+ return PPB_FLASH_DEVICEID_INTERFACE_1_0;
+}
+
+} // namespace
+
+namespace flash {
+
+DeviceID::DeviceID() {
+}
+
+DeviceID::DeviceID(const InstanceHandle& instance) : Resource() {
+ if (has_interface<PPB_Flash_DeviceID_1_0>()) {
+ PassRefFromConstructor(get_interface<PPB_Flash_DeviceID_1_0>()->Create(
+ instance.pp_instance()));
+ }
+}
+
+int32_t DeviceID::GetDeviceID(
+ const CompletionCallbackWithOutput<Var>& callback) {
+ if (has_interface<PPB_Flash_DeviceID_1_0>()) {
+ return get_interface<PPB_Flash_DeviceID_1_0>()->GetDeviceID(
+ pp_resource(),
+ callback.output(),
+ callback.pp_completion_callback());
+ }
+ return callback.MayForce(PP_ERROR_NOINTERFACE);
+}
+
+} // namespace flash
+} // namespace pp

Powered by Google App Engine
This is Rietveld 408576698