1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "ppapi/c/pp_instance.h"
6 #include "ppapi/c/pp_module.h"
8 #include "ppapi/cpp/instance.h"
9 #include "ppapi/cpp/module.h"
11 #include "ppapi_simple/ps.h"
13 static pp::Instance
* s_Instance
= NULL
;
15 PP_Instance
PSGetInstanceId(void) {
16 if (s_Instance
== NULL
)
18 return s_Instance
->pp_instance();
21 const void* PSGetInterface(const char *name
) {
22 pp::Module
* module
= pp::Module::Get();
25 return module
->GetBrowserInterface(name
);
29 // The Module class. The browser calls the CreateInstance() method to create
30 // an instance of your NaCl module on the web page. The browser creates a new
31 // instance for each <embed> tag with type="application/x-nacl".
32 class PSModule
: public pp::Module
{
34 PSModule() : pp::Module() {}
35 virtual ~PSModule() {}
37 virtual pp::Instance
* CreateInstance(PP_Instance instance
) {
38 s_Instance
= static_cast<pp::Instance
*>(PSUserCreateInstance(instance
));
45 // Factory function called by the browser when the module is first loaded.
46 // The browser keeps a singleton of this module. It calls the
47 // CreateInstance() method on the object you return to make instances. There
48 // is one instance per <embed> tag on the page. This is the main binding
49 // point for your NaCl module with the browser.
50 Module
* CreateModule() {
51 return new PSModule();