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

Unified Diff: native_client_sdk/src/examples/api/gamepad/gamepad_module.cc

Issue 14607005: [NaCl SDK] Cleanup examples. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: feedback Created 7 years, 7 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: native_client_sdk/src/examples/api/gamepad/gamepad_module.cc
diff --git a/native_client_sdk/src/examples/api/gamepad/gamepad_module.cc b/native_client_sdk/src/examples/api/gamepad/gamepad_module.cc
deleted file mode 100644
index f24968cf19262d6065fb1dd02721726301c03e7f..0000000000000000000000000000000000000000
--- a/native_client_sdk/src/examples/api/gamepad/gamepad_module.cc
+++ /dev/null
@@ -1,32 +0,0 @@
-// 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/module.h>
-
-#include "gamepad.h"
-
-namespace gamepad {
-// The Module class. The browser calls the CreateInstance() method to create
-// an instance of your NaCl module on the web page. The browser creates a new
-// instance for each <embed> tag with type="application/x-nacl".
-class GamepadModule : public pp::Module {
- public:
- GamepadModule() : pp::Module() {}
- virtual ~GamepadModule() {}
-
- // Create and return a GamepadInstance object.
- virtual pp::Instance* CreateInstance(PP_Instance instance) {
- return new Gamepad(instance);
- }
-};
-} // namespace gamepad
-
-// Factory function called by the browser when the module is first loaded.
-// The browser keeps a singleton of this module. It calls the
-// CreateInstance() method on the object you return to make instances. There
-// is one instance per <embed> tag on the page. This is the main binding
-// point for your NaCl module with the browser.
-namespace pp {
-Module* CreateModule() { return new gamepad::GamepadModule(); }
-} // namespace pp
« no previous file with comments | « native_client_sdk/src/examples/api/gamepad/gamepad.cc ('k') | native_client_sdk/src/examples/api/graphics_3d/example.dsc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698