diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-07 05:00:17 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-07 05:00:17 +0000 |
commit | d04aca190d6797ee21d9ae3ff4204abf8a0eab56 (patch) | |
tree | 718c5663ae4fdab160665c51da6f7d5169c961c6 /ash/cancel_mode.h | |
parent | 4056b848b9bca75c866c530662a07c0e1c0f96c3 (diff) | |
download | chromium_src-d04aca190d6797ee21d9ae3ff4204abf8a0eab56.zip chromium_src-d04aca190d6797ee21d9ae3ff4204abf8a0eab56.tar.gz chromium_src-d04aca190d6797ee21d9ae3ff4204abf8a0eab56.tar.bz2 |
Clean up WindowEventDispatcher some more.
. Eliminate the implementation of LayerAnimationObserver. It seems no one expects WED to be a LAO anymore.
. Remove WindowTreeHostDelegate. This involves moving some of the functions to WTH, removing some completely, and moving the remainder to the WED public API. A little icky for now, but I plan to take a pass on cleaning up WED's public API once I get it pared down.
. window_tree_host_x11_unittest provided an implementation of WTHD that was not WED. This is not a valid situation now since various functions in WTH now call directly through to WED. Replaced this with a simple EventHandler to test that events are being dispatched.
R=sky@chromium.org
http://crbug.com/308843
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=255368
Review URL: https://codereview.chromium.org/188223002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@255533 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/cancel_mode.h')
-rw-r--r-- | ash/cancel_mode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ash/cancel_mode.h b/ash/cancel_mode.h index 915fe43..d3c3669 100644 --- a/ash/cancel_mode.h +++ b/ash/cancel_mode.h @@ -7,7 +7,7 @@ namespace ash { -// Sends OnHostCancelMode() to all RootWindows. +// Sends a CancelMode event to all window hierarchies. void DispatchCancelMode(); } // namespace ash |