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

Unified Diff: chrome/browser/ui/views/frame/browser_desktop_root_window_host_win.h

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
Index: chrome/browser/ui/views/frame/browser_desktop_root_window_host_win.h
diff --git a/chrome/browser/ui/views/frame/browser_desktop_root_window_host_win.h b/chrome/browser/ui/views/frame/browser_desktop_root_window_host_win.h
index 32df404bc8c2845fd9c3814c7cb9fd7f2f01620a..27ab855ebf706f83e4253938e688cb07a503f3b7 100644
--- a/chrome/browser/ui/views/frame/browser_desktop_root_window_host_win.h
+++ b/chrome/browser/ui/views/frame/browser_desktop_root_window_host_win.h
@@ -21,25 +21,25 @@ class DesktopNativeWidgetAura;
class NativeMenuWin;
}
-class BrowserDesktopRootWindowHostWin : public BrowserDesktopRootWindowHost,
- public views::DesktopRootWindowHostWin {
+class BrowserDesktopWindowTreeHostWin : public BrowserDesktopWindowTreeHost,
+ public views::DesktopWindowTreeHostWin {
public:
- BrowserDesktopRootWindowHostWin(
+ BrowserDesktopWindowTreeHostWin(
views::internal::NativeWidgetDelegate* native_widget_delegate,
views::DesktopNativeWidgetAura* desktop_native_widget_aura,
BrowserView* browser_view,
BrowserFrame* browser_frame);
- virtual ~BrowserDesktopRootWindowHostWin();
+ virtual ~BrowserDesktopWindowTreeHostWin();
private:
views::NativeMenuWin* GetSystemMenu();
- // Overridden from BrowserDesktopRootWindowHost:
- virtual DesktopRootWindowHost* AsDesktopRootWindowHost() OVERRIDE;
+ // Overridden from BrowserDesktopWindowTreeHost:
+ virtual DesktopWindowTreeHost* AsDesktopWindowTreeHost() OVERRIDE;
virtual int GetMinimizeButtonOffset() const OVERRIDE;
virtual bool UsesNativeSystemMenu() const OVERRIDE;
- // Overridden from DesktopRootWindowHostWin:
+ // Overridden from DesktopWindowTreeHostWin:
virtual int GetInitialShowState() const OVERRIDE;
virtual bool GetClientAreaInsets(gfx::Insets* insets) const OVERRIDE;
virtual void HandleCreate() OVERRIDE;
@@ -72,7 +72,7 @@ class BrowserDesktopRootWindowHostWin : public BrowserDesktopRootWindowHost,
// Necessary to avoid corruption on NC paint in Aero mode.
bool did_gdi_clear_;
- DISALLOW_COPY_AND_ASSIGN(BrowserDesktopRootWindowHostWin);
+ DISALLOW_COPY_AND_ASSIGN(BrowserDesktopWindowTreeHostWin);
};

Powered by Google App Engine
This is Rietveld 408576698