diff options
author | oshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-11 09:15:45 +0000 |
---|---|---|
committer | oshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-11 09:15:45 +0000 |
commit | 6675e1ca1873419b431878bdf31a8616ef8d6a44 (patch) | |
tree | 2b7a3617cb1161149440caf5ed770907e95105f3 /ui/aura/root_window_host.h | |
parent | 1561a015d42e119c7da3c69ca6f6326970110426 (diff) | |
download | chromium_src-6675e1ca1873419b431878bdf31a8616ef8d6a44.zip chromium_src-6675e1ca1873419b431878bdf31a8616ef8d6a44.tar.gz chromium_src-6675e1ca1873419b431878bdf31a8616ef8d6a44.tar.bz2 |
Cancel drag if display configuration changes.
* Removed debug specific shortcut to emulate display change.
* fixed ui_controls to use the correct position
* a few minor clean ups (removing unnecessary namesapce,
rename Monitor -> Display)
BUG=14457
TEST=covered by test
Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=155762
Review URL: https://chromiumcodereview.appspot.com/10909043
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@155975 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/aura/root_window_host.h')
-rw-r--r-- | ui/aura/root_window_host.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ui/aura/root_window_host.h b/ui/aura/root_window_host.h index 74502bf..ee5eb20 100644 --- a/ui/aura/root_window_host.h +++ b/ui/aura/root_window_host.h @@ -105,6 +105,9 @@ class RootWindowHost { // Called when the device scale factor of the root window has chagned. virtual void OnDeviceScaleFactorChanged(float device_scale_factor) = 0; + + // Stop listening events in preparation for shutdown. + virtual void PrepareForShutdown() = 0; }; } // namespace aura |