diff options
Diffstat (limited to 'mojo/examples/aura_demo')
-rw-r--r-- | mojo/examples/aura_demo/window_tree_host_mojo.cc | 5 | ||||
-rw-r--r-- | mojo/examples/aura_demo/window_tree_host_mojo.h | 1 |
2 files changed, 0 insertions, 6 deletions
diff --git a/mojo/examples/aura_demo/window_tree_host_mojo.cc b/mojo/examples/aura_demo/window_tree_host_mojo.cc index 5d935cd..c598dce 100644 --- a/mojo/examples/aura_demo/window_tree_host_mojo.cc +++ b/mojo/examples/aura_demo/window_tree_host_mojo.cc @@ -96,11 +96,6 @@ void WindowTreeHostMojo::ReleaseCapture() { NOTIMPLEMENTED(); } -bool WindowTreeHostMojo::QueryMouseLocation(gfx::Point* location_return) { - NOTIMPLEMENTED() << "QueryMouseLocation"; - return false; -} - void WindowTreeHostMojo::PostNativeEvent( const base::NativeEvent& native_event) { NOTIMPLEMENTED(); diff --git a/mojo/examples/aura_demo/window_tree_host_mojo.h b/mojo/examples/aura_demo/window_tree_host_mojo.h index 3fca9f7..3514d1e3 100644 --- a/mojo/examples/aura_demo/window_tree_host_mojo.h +++ b/mojo/examples/aura_demo/window_tree_host_mojo.h @@ -42,7 +42,6 @@ class WindowTreeHostMojo : public aura::WindowTreeHost, virtual gfx::Point GetLocationOnNativeScreen() const OVERRIDE; virtual void SetCapture() OVERRIDE; virtual void ReleaseCapture() OVERRIDE; - virtual bool QueryMouseLocation(gfx::Point* location_return) OVERRIDE; virtual void PostNativeEvent(const base::NativeEvent& native_event) OVERRIDE; virtual void OnDeviceScaleFactorChanged(float device_scale_factor) OVERRIDE; virtual void SetCursorNative(gfx::NativeCursor cursor) OVERRIDE; |