diff options
author | mfomitchev@chromium.org <mfomitchev@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-24 23:04:03 +0000 |
---|---|---|
committer | mfomitchev@chromium.org <mfomitchev@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-24 23:04:03 +0000 |
commit | 8ecd5fa2b1ec1c5990bf491d881b84d7289b9ce9 (patch) | |
tree | 666cdb2f7858082a5b0d32b8b5dd832dbe01ad40 /ui/aura/window_tree_host_x11.cc | |
parent | 20a58e6943c8d3ff008b3043d01642b34511c0b1 (diff) | |
download | chromium_src-8ecd5fa2b1ec1c5990bf491d881b84d7289b9ce9.zip chromium_src-8ecd5fa2b1ec1c5990bf491d881b84d7289b9ce9.tar.gz chromium_src-8ecd5fa2b1ec1c5990bf491d881b84d7289b9ce9.tar.bz2 |
Adding GetEventSource() method to the WindowTreeHost class.
Review URL: https://codereview.chromium.org/250103002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@266024 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/aura/window_tree_host_x11.cc')
-rw-r--r-- | ui/aura/window_tree_host_x11.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ui/aura/window_tree_host_x11.cc b/ui/aura/window_tree_host_x11.cc index 6fa75e7..bd897d9 100644 --- a/ui/aura/window_tree_host_x11.cc +++ b/ui/aura/window_tree_host_x11.cc @@ -343,6 +343,10 @@ uint32_t WindowTreeHostX11::DispatchEvent(const ui::PlatformEvent& event) { return ui::POST_DISPATCH_STOP_PROPAGATION; } +ui::EventSource* WindowTreeHostX11::GetEventSource() { + return this; +} + gfx::AcceleratedWidget WindowTreeHostX11::GetAcceleratedWidget() { return xwindow_; } |