Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(832)

Unified Diff: content/browser/web_contents/web_contents_view_aura.cc

Issue 184903003: Window ownership -> WindowTreeHost (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/web_contents/web_contents_view_aura.cc
diff --git a/content/browser/web_contents/web_contents_view_aura.cc b/content/browser/web_contents/web_contents_view_aura.cc
index 1b780d05f699ec5a3070654a926b28e23a0ffa93..0ab1fbfaeb1db34e450d22f1cfd8499c1435002c 100644
--- a/content/browser/web_contents/web_contents_view_aura.cc
+++ b/content/browser/web_contents/web_contents_view_aura.cc
@@ -460,8 +460,8 @@ class WebContentsViewAura::WindowObserver
virtual ~WindowObserver() {
view_->window_->RemoveObserver(this);
- if (view_->window_->GetDispatcher())
- view_->window_->GetDispatcher()->RemoveRootWindowObserver(this);
+ if (view_->window_->GetHost())
+ view_->window_->GetHost()->dispatcher()->RemoveRootWindowObserver(this);
if (parent_)
parent_->RemoveObserver(this);
@@ -592,7 +592,7 @@ class WebContentsViewAura::WindowObserver
virtual void OnWindowAddedToRootWindow(aura::Window* window) OVERRIDE {
if (window == view_->window_) {
- window->GetDispatcher()->AddRootWindowObserver(this);
+ window->GetHost()->dispatcher()->AddRootWindowObserver(this);
#if defined(OS_WIN)
if (!window->GetRootWindow()->HasObserver(this))
window->GetRootWindow()->AddObserver(this);
@@ -602,7 +602,7 @@ class WebContentsViewAura::WindowObserver
virtual void OnWindowRemovingFromRootWindow(aura::Window* window) OVERRIDE {
if (window == view_->window_) {
- window->GetDispatcher()->RemoveRootWindowObserver(this);
+ window->GetHost()->dispatcher()->RemoveRootWindowObserver(this);
#if defined(OS_WIN)
window->GetRootWindow()->RemoveObserver(this);

Powered by Google App Engine
This is Rietveld 408576698