diff options
Diffstat (limited to 'webkit')
-rw-r--r-- | webkit/tools/npapi_layout_test_plugin/main.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/webkit/tools/npapi_layout_test_plugin/main.cpp b/webkit/tools/npapi_layout_test_plugin/main.cpp index 7b79b08..fbd9b82 100644 --- a/webkit/tools/npapi_layout_test_plugin/main.cpp +++ b/webkit/tools/npapi_layout_test_plugin/main.cpp @@ -372,6 +372,12 @@ int16 NPP_HandleEvent(NPP instance, void *event) fflush(stdout); #else + +#ifdef MAC_EVENT_CODE_DISABLED_DUE_TO_ERRORS +// This code apparently never built on Mac, but Mac was previously +// using the Linux branch. It doesn't quite build. +// warning: 'GlobalToLocal' is deprecated (declared at +// .../Frameworks/QD.framework/Headers/QuickdrawAPI.h:2181) EventRecord* evt = static_cast<EventRecord*>(event); Point pt = { evt->where.v, evt->where.h }; switch (evt->what) { @@ -432,6 +438,8 @@ int16 NPP_HandleEvent(NPP instance, void *event) default: log(instance, "event %d", evt->what); } +#endif // MAC_EVENT_CODE_DISABLED_DUE_TO_ERRORS + #endif return 0; |