summaryrefslogtreecommitdiffstats
path: root/content/shell/browser
diff options
context:
space:
mode:
authordnicoara@chromium.org <dnicoara@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-02-24 15:42:48 +0000
committerdnicoara@chromium.org <dnicoara@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-02-24 15:42:48 +0000
commit8f2543322a1c8db27a80ec5e36e45bf9ae27dcf5 (patch)
tree3e6fb6e135efb1b7dd10041482d616a0ebfba253 /content/shell/browser
parent560288155dfb9d41b75b722301063ef55c61fe89 (diff)
downloadchromium_src-8f2543322a1c8db27a80ec5e36e45bf9ae27dcf5.zip
chromium_src-8f2543322a1c8db27a80ec5e36e45bf9ae27dcf5.tar.gz
chromium_src-8f2543322a1c8db27a80ec5e36e45bf9ae27dcf5.tar.bz2
Update shell_aura.cc to get aura::Window for dispatcher.
This change is related to CL: https://codereview.chromium.org/172743002 where RootWindow was renamed to WindowEventDispatcher. This fixes the Ozone build which uses shell_aura.cc TBR=ben@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/177713003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@252920 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/shell/browser')
-rw-r--r--content/shell/browser/shell_aura.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/shell/browser/shell_aura.cc b/content/shell/browser/shell_aura.cc
index 4719a15..1fdb7cb 100644
--- a/content/shell/browser/shell_aura.cc
+++ b/content/shell/browser/shell_aura.cc
@@ -51,7 +51,7 @@ void Shell::PlatformCreateWindow(int width, int height) {
void Shell::PlatformSetContents() {
CHECK(platform_);
aura::Window* content = web_contents_->GetView()->GetNativeView();
- aura::Window* parent = platform_->window()->window();
+ aura::Window* parent = platform_->dispatcher()->window();
if (parent->Contains(content))
return;
parent->AddChild(content);