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

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

Issue 39105: Windowless plugins: basic drawing works. (Closed)
Patch Set: retry Created 11 years, 10 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: webkit/glue/plugins/plugin_instance.h
diff --git a/webkit/glue/plugins/plugin_instance.h b/webkit/glue/plugins/plugin_instance.h
index 7e3ecd047325ce8d02b5ac967145b5c7d46a4733..1d5b0941cccd795f25f0c4bb37fbc516e05cc28f 100644
--- a/webkit/glue/plugins/plugin_instance.h
+++ b/webkit/glue/plugins/plugin_instance.h
@@ -16,6 +16,7 @@
#include "base/file_path.h"
#include "base/ref_counted.h"
#include "base/scoped_ptr.h"
+#include "build/build_config.h"
darin (slow to review) 2009/03/04 16:37:01 nit: there's no need to include build_config.h her
#include "webkit/glue/plugins/nphostapi.h"
#include "googleurl/src/gurl.h"
#include "third_party/npapi/bindings/npapi.h"
@@ -99,6 +100,8 @@ class PluginInstance : public base::RefCountedThreadSafe<PluginInstance> {
// Handles a windows native message which this PluginInstance should deal
// with. Returns true if the event is handled, false otherwise.
bool HandleEvent(UINT message, WPARAM wParam, LPARAM lParam);
+#elif defined(OS_LINUX)
+ bool HandleEvent(union _XEvent* event);
#endif
// Creates a stream for sending an URL. If notify_needed

Powered by Google App Engine
This is Rietveld 408576698