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

Unified Diff: ui/views/mus/native_widget_view_manager.cc

Issue 1410193009: WindowTreeHostMojo -> WindowTreeHostMus (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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
« no previous file with comments | « ui/views/mus/native_widget_view_manager.h ('k') | ui/views/mus/window_tree_host_mus.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/mus/native_widget_view_manager.cc
diff --git a/ui/views/mus/native_widget_view_manager.cc b/ui/views/mus/native_widget_view_manager.cc
index e6a0e67bd7fa968a284a80ce07a1dbd2e160944b..36a27aa00ccc1b48f9d2397f2070a0f299d252e7 100644
--- a/ui/views/mus/native_widget_view_manager.cc
+++ b/ui/views/mus/native_widget_view_manager.cc
@@ -53,7 +53,7 @@ class NativeWidgetWindowObserver : public mus::WindowObserver {
DCHECK_EQ(view, view_manager_->window_);
view->RemoveObserver(this);
view_manager_->window_ = nullptr;
- // TODO(sky): WindowTreeHostMojo assumes the View outlives it.
+ // TODO(sky): WindowTreeHostMus assumes the View outlives it.
// NativeWidgetWindowObserver needs to deal, likely by deleting this.
}
@@ -94,7 +94,7 @@ NativeWidgetViewManager::NativeWidgetViewManager(
mojo::Shell* shell,
mus::Window* window)
: NativeWidgetAura(delegate), window_(window), window_manager_(nullptr) {
- window_tree_host_.reset(new WindowTreeHostMojo(shell, window_));
+ window_tree_host_.reset(new WindowTreeHostMus(shell, window_));
window_tree_host_->InitHost();
focus_client_.reset(new wm::FocusController(new FocusRulesImpl));
« no previous file with comments | « ui/views/mus/native_widget_view_manager.h ('k') | ui/views/mus/window_tree_host_mus.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698