summaryrefslogtreecommitdiffstats
path: root/remoting/client/plugin/pepper_util.h
diff options
context:
space:
mode:
authorajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-08 16:59:51 +0000
committerajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-08 16:59:51 +0000
commit3889d4d68c1ad0e6d4054745a97b7e01b829be77 (patch)
tree2d5215cc37e2f53a5fe09159ad352b7cdeeb9b7e /remoting/client/plugin/pepper_util.h
parentcdc484d8d1c0d4dd3bc072449a2f0aed56f301cd (diff)
downloadchromium_src-3889d4d68c1ad0e6d4054745a97b7e01b829be77.zip
chromium_src-3889d4d68c1ad0e6d4054745a97b7e01b829be77.tar.gz
chromium_src-3889d4d68c1ad0e6d4054745a97b7e01b829be77.tar.bz2
Integrating back into using the external ppapi/cpp wrappers.
This should bring us close to Gary's original npapi code. BUG=none TEST=can connect to simple host Review URL: http://codereview.chromium.org/2858037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51857 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/client/plugin/pepper_util.h')
-rw-r--r--remoting/client/plugin/pepper_util.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/remoting/client/plugin/pepper_util.h b/remoting/client/plugin/pepper_util.h
new file mode 100644
index 0000000..6c6cfb0
--- /dev/null
+++ b/remoting/client/plugin/pepper_util.h
@@ -0,0 +1,32 @@
+// Copyright (c) 2010 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.
+
+#ifndef REMOTING_CLIENT_PLUGIN_PLUGIN_UTIL_H_
+#define REMOTING_CLIENT_PLUGIN_PLUGIN_UTIL_H_
+
+#include "base/basictypes.h"
+
+#include "third_party/ppapi/cpp/completion_callback.h"
+
+class Task;
+
+namespace remoting {
+
+// Function for adapting a Chromium style Task into a
+// PP_CompletionCallback friendly function. The Task object should be passed
+// as |user_data|. This function will invoke Task::Run() on |user_data| when
+// called, and then delete |user_data|.
+void CompletionCallbackTaskAdapter(void* user_data, int32_t not_used);
+
+// Converts a Task* to a pp::CompletionCallback suitable for use with ppapi C++
+// APIs that require a pp::CompletionCallback. Takes ownership of |task|.
+pp::CompletionCallback TaskToCompletionCallback(Task* task);
+
+// Posts the current task to the plugin's main thread. Takes ownership of
+// |task|.
+void RunTaskOnPluginThread(Task* task);
+
+} // namespace remoting
+
+#endif // REMOTING_CLIENT_PLUGIN_PLUGIN_UTIL_H_