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

Unified Diff: examples/graphics/life/life_module.cc

Issue 6286025: Port the Life example to Pepper 2. (Closed) Base URL: http://naclports.googlecode.com/svn/trunk/src/
Patch Set: '' Created 9 years, 11 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 | « examples/graphics/life/life_dbg.nmf ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: examples/graphics/life/life_module.cc
===================================================================
--- examples/graphics/life/life_module.cc (revision 0)
+++ examples/graphics/life/life_module.cc (revision 0)
@@ -0,0 +1,35 @@
+// Copyright 2010 The Native Client SDK 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 "examples/graphics/life/life.h"
+
+namespace life {
+// The Module class. The browser calls the CreateInstance() method to create
+// an instance of you NaCl module on the web page. The browser creates a new
+// instance for each <embed> tag with type="application/x-nacl".
+class LifeModule : public pp::Module {
+ public:
+ LifeModule() : pp::Module() {}
+ virtual ~LifeModule() {}
+
+ // Create and return a PiGeneratorInstance object.
+ virtual pp::Instance* CreateInstance(PP_Instance instance) {
+ return new Life(instance);
+ }
+};
+} // namespace life
+
+// 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 life::LifeModule();
+}
+} // namespace pp
+
Property changes on: examples/graphics/life/life_module.cc
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « examples/graphics/life/life_dbg.nmf ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698