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

Unified Diff: chrome/browser/ui/aura/active_desktop_monitor.cc

Issue 126513004: Rename RootWindowHost to WindowTreeHost (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 11 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 | « chrome/browser/ui/aura/active_desktop_monitor.h ('k') | chrome/browser/ui/aura/tabs/dock_info_auralinux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/aura/active_desktop_monitor.cc
diff --git a/chrome/browser/ui/aura/active_desktop_monitor.cc b/chrome/browser/ui/aura/active_desktop_monitor.cc
index 736d84892154bca547b5d996749897ae358aa4d8..32ac37196390613b7a1a2f4a11a9d7b2201f816e 100644
--- a/chrome/browser/ui/aura/active_desktop_monitor.cc
+++ b/chrome/browser/ui/aura/active_desktop_monitor.cc
@@ -39,14 +39,14 @@ chrome::HostDesktopType ActiveDesktopMonitor::GetLastActivatedDesktopType() {
// static
bool ActiveDesktopMonitor::IsDesktopWindow(aura::RootWindow* root_window) {
- // Only windows hosted by a DesktopRootWindowHost implementation can be mapped
+ // Only windows hosted by a DesktopWindowTreeHost implementation can be mapped
// back to a content Window. All others, therefore, must be the root window
// for an Ash display.
#if defined(OS_WIN)
- return views::DesktopRootWindowHostWin::GetContentWindowForHWND(
+ return views::DesktopWindowTreeHostWin::GetContentWindowForHWND(
root_window->host()->GetAcceleratedWidget()) != NULL;
#elif defined(USE_X11)
- return views::DesktopRootWindowHostX11::GetContentWindowForXID(
+ return views::DesktopWindowTreeHostX11::GetContentWindowForXID(
root_window->host()->GetAcceleratedWidget()) != NULL;
#else
NOTREACHED();
« no previous file with comments | « chrome/browser/ui/aura/active_desktop_monitor.h ('k') | chrome/browser/ui/aura/tabs/dock_info_auralinux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698