diff options
author | dnicoara@chromium.org <dnicoara@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-24 15:42:48 +0000 |
---|---|---|
committer | dnicoara@chromium.org <dnicoara@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-24 15:42:48 +0000 |
commit | 8f2543322a1c8db27a80ec5e36e45bf9ae27dcf5 (patch) | |
tree | 3e6fb6e135efb1b7dd10041482d616a0ebfba253 /content/shell/browser | |
parent | 560288155dfb9d41b75b722301063ef55c61fe89 (diff) | |
download | chromium_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.cc | 2 |
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); |