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

Unified Diff: webkit/glue/plugins/plugin_instance.h

Issue 211031: Remove the temporary Mac plugin whitelist.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 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 | « webkit/glue/plugins/plugin_host.cc ('k') | webkit/glue/plugins/plugin_instance.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/plugins/plugin_instance.h
===================================================================
--- webkit/glue/plugins/plugin_instance.h (revision 26675)
+++ webkit/glue/plugins/plugin_instance.h (working copy)
@@ -101,6 +101,13 @@
NPAPI::PluginLib* plugin_lib() { return plugin_; }
+#if defined(OS_MACOSX)
+ int drawing_model() { return drawing_model_; }
+ void set_drawing_model(int value) { drawing_model_ = value; }
+ int event_model() { return event_model_; }
+ void set_event_model(int value) { event_model_ = value; }
+#endif
+
#if defined(OS_WIN)
// Handles a windows native message which this PluginInstance should deal
// with. Returns true if the event is handled, false otherwise.
@@ -238,6 +245,10 @@
#if defined(OS_WIN)
scoped_refptr<MozillaExtensionApi> mozilla_extenstions_;
#endif
+#if defined(OS_MACOSX)
+ int drawing_model_;
+ int event_model_;
+#endif
MessageLoop* message_loop_;
scoped_refptr<PluginStreamUrl> plugin_data_stream_;
« no previous file with comments | « webkit/glue/plugins/plugin_host.cc ('k') | webkit/glue/plugins/plugin_instance.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698