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

Unified Diff: ui/views/widget/desktop_aura/desktop_root_window_host.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: ui/views/widget/desktop_aura/desktop_root_window_host.h
diff --git a/ui/views/widget/desktop_aura/desktop_root_window_host.h b/ui/views/widget/desktop_aura/desktop_root_window_host.h
index fed998e4cd457d66805722ee61d4ea1ee4b5c317..9330bf6fc498b097a8be9c930b2d3549005a31b9 100644
--- a/ui/views/widget/desktop_aura/desktop_root_window_host.h
+++ b/ui/views/widget/desktop_aura/desktop_root_window_host.h
@@ -12,7 +12,7 @@
#include "ui/views/widget/widget.h"
namespace aura {
-class RootWindowHost;
+class WindowTreeHost;
class Window;
namespace client {
@@ -42,11 +42,11 @@ class NativeWidgetDelegate;
class DesktopNativeCursorManager;
class DesktopNativeWidgetAura;
-class VIEWS_EXPORT DesktopRootWindowHost {
+class VIEWS_EXPORT DesktopWindowTreeHost {
public:
- virtual ~DesktopRootWindowHost() {}
+ virtual ~DesktopWindowTreeHost() {}
- static DesktopRootWindowHost* Create(
+ static DesktopWindowTreeHost* Create(
internal::NativeWidgetDelegate* native_widget_delegate,
DesktopNativeWidgetAura* desktop_native_widget_aura);
@@ -64,19 +64,19 @@ class VIEWS_EXPORT DesktopRootWindowHost {
// Creates and returns the Tooltip implementation to use. Return value is
// owned by DesktopNativeWidgetAura and lives as long as
- // DesktopRootWindowHost.
+ // DesktopWindowTreeHost.
virtual scoped_ptr<corewm::Tooltip> CreateTooltip() = 0;
// Creates and returns the DragDropClient implementation to use. Return value
// is owned by DesktopNativeWidgetAura and lives as long as
- // DesktopRootWindowHost.
+ // DesktopWindowTreeHost.
virtual scoped_ptr<aura::client::DragDropClient> CreateDragDropClient(
DesktopNativeCursorManager* cursor_manager) = 0;
virtual void Close() = 0;
virtual void CloseNow() = 0;
- virtual aura::RootWindowHost* AsRootWindowHost() = 0;
+ virtual aura::WindowTreeHost* AsWindowTreeHost() = 0;
virtual void ShowWindowWithState(ui::WindowShowState show_state) = 0;
virtual void ShowMaximizedWithBounds(const gfx::Rect& restored_bounds) = 0;

Powered by Google App Engine
This is Rietveld 408576698