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

Unified Diff: ppapi/cpp/dev/hello_dev.cc

Issue 8414054: Hello Pepper API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 years, 1 month 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/cpp/dev/hello_dev.h ('k') | ppapi/ppapi_cpp.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/dev/hello_dev.cc
diff --git a/ppapi/cpp/dev/hello_dev.cc b/ppapi/cpp/dev/hello_dev.cc
new file mode 100644
index 0000000000000000000000000000000000000000..2088bdac88af6424551c55b5905a89bd917680ba
--- /dev/null
+++ b/ppapi/cpp/dev/hello_dev.cc
@@ -0,0 +1,54 @@
+// Copyright (c) 2011 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/dev/hello_dev.h"
+
+#include <stdio.h>
+
+#include "ppapi/c/dev/ppb_hello_dev.h"
+#include "ppapi/c/pp_errors.h"
+#include "ppapi/cpp/module.h"
+#include "ppapi/cpp/module_impl.h"
+
+namespace pp {
+
+namespace {
+
+template <> const char* interface_name<PPB_Hello_Dev>() {
+ return PPB_HELLO_DEV_INTERFACE;
+}
+
+} // namespace
+
+Hello::Hello(Instance* instance) {
+ puts("C++ API Hello (constructor)");
+ if (!has_interface<PPB_Hello_Dev>()) {
+ puts(" has_interface<PPB_Hello_Dev> return false");
+ return;
+ }
+ PassRefFromConstructor(get_interface<PPB_Hello_Dev>()->Create(
+ instance->pp_instance()));
+}
+
+int32_t Hello::SayHello() {
+ puts("C++ API SayHello");
+ if (!has_interface<PPB_Hello_Dev>()) {
+ puts(" has_interface<PPB_Hello_Dev> return false");
+ return PP_ERROR_NOINTERFACE;
+ }
+ return get_interface<PPB_Hello_Dev>()->SayHello(pp_resource());
+}
+
+void Hello::WhoAreYou(char *name, uint32_t size,
+ CompletionCallback callback) {
+ puts("C++ API WhoAreYou");
+ if (!has_interface<PPB_Hello_Dev>()) {
+ puts("has_interface<PPB_Hello_Dev>() return false");
+ return;
+ }
+ get_interface<PPB_Hello_Dev>()->WhoAreYou(pp_resource(), name, size,
+ callback.pp_completion_callback());
+}
+
+} // namespace pp
« no previous file with comments | « ppapi/cpp/dev/hello_dev.h ('k') | ppapi/ppapi_cpp.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698