summaryrefslogtreecommitdiffstats
path: root/ash/wm/event_client_impl.h
diff options
context:
space:
mode:
authorrch@chromium.org <rch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-08 21:25:07 +0000
committerrch@chromium.org <rch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-08 21:25:07 +0000
commitfb52d25a47d4200c0a19ac93bc3ddcae7bcbdc8d (patch)
treea41593fa00159ff081ca2ff65bbdf40cab2f16e4 /ash/wm/event_client_impl.h
parent5537099c44f42493f4c409bce73bb95d06fc06e0 (diff)
downloadchromium_src-fb52d25a47d4200c0a19ac93bc3ddcae7bcbdc8d.zip
chromium_src-fb52d25a47d4200c0a19ac93bc3ddcae7bcbdc8d.tar.gz
chromium_src-fb52d25a47d4200c0a19ac93bc3ddcae7bcbdc8d.tar.bz2
Revert 160696 - Decouple EventClientImpl and root window. Check containers on the same root window as focused window when testing if the focused window can receive events. This was causing lock screen to lose focus when mouse is clicked on another root window.
This Cl also adds a debug build/linux desktop only shortcut (F11) to lock/shutdown. BUG=152982 TEST=covered by test. Review URL: https://chromiumcodereview.appspot.com/11047030 TBR=oshima@chromium.org Review URL: https://codereview.chromium.org/11087014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160707 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/wm/event_client_impl.h')
-rw-r--r--ash/wm/event_client_impl.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/ash/wm/event_client_impl.h b/ash/wm/event_client_impl.h
index 3702709..cf689ed 100644
--- a/ash/wm/event_client_impl.h
+++ b/ash/wm/event_client_impl.h
@@ -17,7 +17,7 @@ namespace internal {
class EventClientImpl : public aura::client::EventClient {
public:
- EventClientImpl();
+ explicit EventClientImpl(aura::RootWindow* root_window);
virtual ~EventClientImpl();
private:
@@ -25,6 +25,8 @@ class EventClientImpl : public aura::client::EventClient {
virtual bool CanProcessEventsWithinSubtree(
const aura::Window* window) const OVERRIDE;
+ aura::RootWindow* root_window_;
+
DISALLOW_COPY_AND_ASSIGN(EventClientImpl);
};