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

Side by Side Diff: src/trusted/plugin/ppapi/module_ppapi.cc

Issue 6218004: Resource64->32, NaCl side. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: First 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright 2010 The Native Client Authors. All rights reserved. 2 * Copyright 2010 The Native Client Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can 3 * Use of this source code is governed by a BSD-style license that can
4 * be found in the LICENSE file. 4 * be found in the LICENSE file.
5 */ 5 */
6 6
7 #include "native_client/src/trusted/desc/nrd_all_modules.h" 7 #include "native_client/src/trusted/desc/nrd_all_modules.h"
8 #include "native_client/src/trusted/handle_pass/browser_handle.h" 8 #include "native_client/src/trusted/handle_pass/browser_handle.h"
9 #include "native_client/src/trusted/plugin/ppapi/plugin_ppapi.h" 9 #include "native_client/src/trusted/plugin/ppapi/plugin_ppapi.h"
10 #include "native_client/src/trusted/plugin/nacl_entry_points.h" 10 #include "native_client/src/trusted/plugin/nacl_entry_points.h"
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 44
45 NaClNrdAllModulesInit(); 45 NaClNrdAllModulesInit();
46 46
47 #if NACL_WINDOWS && !defined(NACL_STANDALONE) 47 #if NACL_WINDOWS && !defined(NACL_STANDALONE)
48 NaClHandlePassBrowserInit(); 48 NaClHandlePassBrowserInit();
49 #endif 49 #endif
50 return true; 50 return true;
51 } 51 }
52 52
53 virtual pp::Instance* CreateInstance(PP_Instance pp_instance) { 53 virtual pp::Instance* CreateInstance(PP_Instance pp_instance) {
54 PLUGIN_PRINTF(("ModulePpapi::CreateInstance (pp_instance=%"NACL_PRId64")\n", 54 PLUGIN_PRINTF(("ModulePpapi::CreateInstance (pp_instance=%"NACL_PRId32")\n",
55 pp_instance)); 55 pp_instance));
56 PluginPpapi* plugin = PluginPpapi::New(pp_instance); 56 PluginPpapi* plugin = PluginPpapi::New(pp_instance);
57 PLUGIN_PRINTF(("ModulePpapi::CreateInstance (return %p)\n", 57 PLUGIN_PRINTF(("ModulePpapi::CreateInstance (return %p)\n",
58 static_cast<void* >(plugin))); 58 static_cast<void* >(plugin)));
59 return plugin; 59 return plugin;
60 } 60 }
61 }; 61 };
62 62
63 } // namespace plugin 63 } // namespace plugin
64 64
65 65
66 namespace pp { 66 namespace pp {
67 67
68 Module* CreateModule() { 68 Module* CreateModule() {
69 PLUGIN_PRINTF(("CreateModule ()\n")); 69 PLUGIN_PRINTF(("CreateModule ()\n"));
70 return new plugin::ModulePpapi(); 70 return new plugin::ModulePpapi();
71 } 71 }
72 72
73 } // namespace pp 73 } // namespace pp
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698