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

Unified Diff: webkit/plugins/ppapi/npobject_var.cc

Issue 8826011: Remove PP_Module from parameters for PPB_Var.VarFromUtf8. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 9 years 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 | « webkit/plugins/ppapi/npobject_var.h ('k') | webkit/plugins/ppapi/plugin_module.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/ppapi/npobject_var.cc
diff --git a/webkit/plugins/ppapi/npobject_var.cc b/webkit/plugins/ppapi/npobject_var.cc
index 348e6ea1452f67ed9fd679efe16a6acc55c71aee..5a8817609ffd937f40a8efee1c00b814d8d854fb 100644
--- a/webkit/plugins/ppapi/npobject_var.cc
+++ b/webkit/plugins/ppapi/npobject_var.cc
@@ -17,11 +17,9 @@ namespace ppapi {
// NPObjectVar -----------------------------------------------------------------
-NPObjectVar::NPObjectVar(PP_Module module,
- PP_Instance instance,
+NPObjectVar::NPObjectVar(PP_Instance instance,
NPObject* np_object)
- : Var(module),
- pp_instance_(instance),
+ : pp_instance_(instance),
np_object_(np_object) {
WebBindings::retainObject(np_object_);
HostGlobals::Get()->host_var_tracker()->AddNPObjectVar(this);
« no previous file with comments | « webkit/plugins/ppapi/npobject_var.h ('k') | webkit/plugins/ppapi/plugin_module.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698