diff options
author | oshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-13 09:15:06 +0000 |
---|---|---|
committer | oshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-13 09:15:06 +0000 |
commit | 1bca2284b9ec3f2338ca74dc7339a8cfc51a24c9 (patch) | |
tree | 735b21c0a958ebd2b01da9d01a4a3113dfafab00 /ash/wm/property_util.cc | |
parent | 300172b0511b909db0a91db2c8c0f9e48f4ed054 (diff) | |
download | chromium_src-1bca2284b9ec3f2338ca74dc7339a8cfc51a24c9.zip chromium_src-1bca2284b9ec3f2338ca74dc7339a8cfc51a24c9.tar.gz chromium_src-1bca2284b9ec3f2338ca74dc7339a8cfc51a24c9.tar.bz2 |
Revert r141871 "Add RootWindowController that keeps per root window state."
This reverts commit d696be73d92539286ad99338a26ceffe320be7cc.
TBR=oshima@chromium.org
BUG=none
TEST=none
Review URL: https://chromiumcodereview.appspot.com/10545154
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@141875 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/wm/property_util.cc')
-rw-r--r-- | ash/wm/property_util.cc | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/ash/wm/property_util.cc b/ash/wm/property_util.cc index a51d298..50a7bed 100644 --- a/ash/wm/property_util.cc +++ b/ash/wm/property_util.cc @@ -8,7 +8,6 @@ #include "ash/wm/window_properties.h" #include "ash/wm/window_util.h" #include "ui/aura/client/aura_constants.h" -#include "ui/aura/root_window.h" #include "ui/aura/window.h" #include "ui/base/ui_base_types.h" #include "ui/gfx/rect.h" @@ -73,14 +72,4 @@ void SetDefaultPersistsAcrossAllWorkspaces(bool value) { g_default_windows_persist_across_all_workspaces = value; } -internal::RootWindowController* GetRootWindowController( - aura::RootWindow* root_window) { - return root_window->GetProperty(internal::kRootWindowControllerKey); } - -void SetRootWindowController(aura::RootWindow* root_window, - internal::RootWindowController* controller) { - root_window->SetProperty(internal::kRootWindowControllerKey, controller); -} - -} // namespace ash |