diff options
Diffstat (limited to 'ui/aura/root_window_host.h')
-rw-r--r-- | ui/aura/root_window_host.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ui/aura/root_window_host.h b/ui/aura/root_window_host.h index 83edcbd..ad28ca0 100644 --- a/ui/aura/root_window_host.h +++ b/ui/aura/root_window_host.h @@ -23,7 +23,11 @@ class RootWindow; // RootWindowHost bridges between a native window and the embedded RootWindow. // It provides the accelerated widget and maps events from the native os to // aura. +#if defined(OS_MACOSX) +class RootWindowHost { +#else class RootWindowHost : public MessageLoop::Dispatcher { +#endif // defined(OS_MACOSX) public: virtual ~RootWindowHost() {} @@ -72,7 +76,9 @@ class RootWindowHost : public MessageLoop::Dispatcher { virtual void MoveCursorTo(const gfx::Point& location) = 0; // Posts |native_event| to the platform's event queue. +#if !defined(OS_MACOSX) virtual void PostNativeEvent(const base::NativeEvent& native_event) = 0; +#endif }; } // namespace aura |