| Index: content/test/plugin/plugin_windowless_test.cc
|
| diff --git a/content/test/plugin/plugin_windowless_test.cc b/content/test/plugin/plugin_windowless_test.cc
|
| index 9b126c9247c88ac09568e23a9e1cb660971aa5d1..5d78bef95c29c462a5d845a7283030e9b2566bb1 100644
|
| --- a/content/test/plugin/plugin_windowless_test.cc
|
| +++ b/content/test/plugin/plugin_windowless_test.cc
|
| @@ -10,10 +10,6 @@
|
| #include "base/strings/string_util.h"
|
| #include "content/test/plugin/plugin_client.h"
|
|
|
| -#if defined(TOOLKIT_GTK)
|
| -#include <gdk/gdkx.h>
|
| -#endif
|
| -
|
| // NPEvent does not exist on the Mac.
|
| #if defined(OS_MACOSX)
|
| typedef NPCocoaEvent WindowlessPluginTestEvent;
|
| @@ -37,8 +33,6 @@ bool IsPaintEvent(WindowlessPluginTestEvent* np_event) {
|
| return np_event->event == WM_PAINT;
|
| #elif defined(OS_MACOSX)
|
| return np_event->type == NPCocoaEventDrawRect;
|
| -#elif defined(TOOLKIT_GTK)
|
| - return np_event->type == GraphicsExpose;
|
| #else
|
| NOTIMPLEMENTED();
|
| return false;
|
|
|