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

Unified Diff: chrome/renderer/plugins/webview_plugin.cc

Issue 15007012: Track NPObject ownership by the originating plugins' NPP identifier. [2/3] (Chrome) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add missing forward-define. 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: chrome/renderer/plugins/webview_plugin.cc
diff --git a/chrome/renderer/plugins/webview_plugin.cc b/chrome/renderer/plugins/webview_plugin.cc
index 8e36f22b688a44dd90eca16dda2858b605b575a1..2b3b0d9f959afdc64d9d853a4afa93ecd26d4cba 100644
--- a/chrome/renderer/plugins/webview_plugin.cc
+++ b/chrome/renderer/plugins/webview_plugin.cc
@@ -114,6 +114,10 @@ NPObject* WebViewPlugin::scriptableObject() {
return NULL;
}
+struct _NPP* WebViewPlugin::pluginNPP() {
+ return NULL;
jamesr 2013/05/21 18:20:21 how is this OK?
Wez 2013/05/22 06:55:25 WebViewPlugin doesn't appear to do any scripting v
+}
+
bool WebViewPlugin::getFormValue(WebString& value) {
return false;
}

Powered by Google App Engine
This is Rietveld 408576698