diff options
author | dmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-12 22:54:17 +0000 |
---|---|---|
committer | dmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-12 22:54:17 +0000 |
commit | 1bb2aa70728ab0b8917b9c44284bd22f591b1ea0 (patch) | |
tree | 3d1c20241b5236a9e6911f1ef01629268259a201 /ash/shell/content_client | |
parent | 78887cf9abd2a730fe4a784ddfe3251929717cc3 (diff) | |
download | chromium_src-1bb2aa70728ab0b8917b9c44284bd22f591b1ea0.zip chromium_src-1bb2aa70728ab0b8917b9c44284bd22f591b1ea0.tar.gz chromium_src-1bb2aa70728ab0b8917b9c44284bd22f591b1ea0.tar.bz2 |
Revert "Move wm/core to wm namespace."
This reverts commit 067d7fe616a07011b9e2d2609fc65af8db6a7dfb.
Broke the build:
http://build.chromium.org/p/chromium.mac/builders/Mac%20Builder%20%28dbg%29/builds/63598/steps/compile/logs/stdio
BUG=
TBR=ben
Review URL: https://codereview.chromium.org/198283002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@256686 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/shell/content_client')
-rw-r--r-- | ash/shell/content_client/shell_browser_main_parts.cc | 2 | ||||
-rw-r--r-- | ash/shell/content_client/shell_browser_main_parts.h | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/ash/shell/content_client/shell_browser_main_parts.cc b/ash/shell/content_client/shell_browser_main_parts.cc index d809807..edb6e1a 100644 --- a/ash/shell/content_client/shell_browser_main_parts.cc +++ b/ash/shell/content_client/shell_browser_main_parts.cc @@ -98,7 +98,7 @@ void ShellBrowserMainParts::PostMainMessageLoopStart() { } void ShellBrowserMainParts::ToolkitInitialized() { - wm_state_.reset(new wm::WMState); + wm_state_.reset(new views::corewm::WMState); } void ShellBrowserMainParts::PreMainMessageLoopRun() { diff --git a/ash/shell/content_client/shell_browser_main_parts.h b/ash/shell/content_client/shell_browser_main_parts.h index 0e07cbf..229c868 100644 --- a/ash/shell/content_client/shell_browser_main_parts.h +++ b/ash/shell/content_client/shell_browser_main_parts.h @@ -22,9 +22,11 @@ namespace net { class NetLog; } -namespace wm { +namespace views { +namespace corewm { class WMState; } +} namespace ash { namespace shell { @@ -55,7 +57,7 @@ class ShellBrowserMainParts : public content::BrowserMainParts { scoped_ptr<content::ShellBrowserContext> browser_context_; scoped_ptr<ash::shell::WindowWatcher> window_watcher_; ShellDelegateImpl* delegate_; // owned by Shell - scoped_ptr<wm::WMState> wm_state_; + scoped_ptr<views::corewm::WMState> wm_state_; DISALLOW_COPY_AND_ASSIGN(ShellBrowserMainParts); }; |