diff options
author | oshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-23 08:45:04 +0000 |
---|---|---|
committer | oshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-23 08:45:04 +0000 |
commit | b9329a6c9643cb4d4484d43e10664e418f79d721 (patch) | |
tree | 754f064d63e64c75204cc36925a9b8208500234a /ui/aura/root_window_host.h | |
parent | 47092fc95c7980639f5ad5bab0e42f829ea97057 (diff) | |
download | chromium_src-b9329a6c9643cb4d4484d43e10664e418f79d721.zip chromium_src-b9329a6c9643cb4d4484d43e10664e418f79d721.tar.gz chromium_src-b9329a6c9643cb4d4484d43e10664e418f79d721.tar.bz2 |
relanding: disabled workspace_window_resizer test. fixed access-after-free.
* MonitorChangeObserverX11 that listen to Xrandr events and update monitor configurations.
* Message on secondary monitor view
* Accelerator to create/delete/cycle monitors to test multi monitor on linux desktop
* unittest for MultiMonitorManager/MonitorController
BUG=115510
TEST=multi_monitor_manager_unittests
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=128330
Review URL: https://chromiumcodereview.appspot.com/9754001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@128436 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 2eb29b9..4ab1830 100644 --- a/ui/aura/root_window_host.h +++ b/ui/aura/root_window_host.h @@ -79,6 +79,9 @@ class RootWindowHost { // Moves the cursor to the specified location relative to the root window. virtual void MoveCursorTo(const gfx::Point& location) = 0; + // Sets if the window should be focused when shown. + virtual void SetFocusWhenShown(bool focus_when_shown) = 0; + // Posts |native_event| to the platform's event queue. #if !defined(OS_MACOSX) virtual void PostNativeEvent(const base::NativeEvent& native_event) = 0; |