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

Unified Diff: trunk/src/ash/host/root_window_host_factory.h

Issue 77203002: Revert 236048 "Rename RootWindowHost* to WindowTreeHost*" (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 1 month 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: trunk/src/ash/host/root_window_host_factory.h
===================================================================
--- trunk/src/ash/host/root_window_host_factory.h (revision 236090)
+++ trunk/src/ash/host/root_window_host_factory.h (working copy)
@@ -9,23 +9,23 @@
#include "ui/gfx/rect.h"
namespace aura {
-class WindowTreeHost;
+class RootWindowHost;
}
namespace ash {
-class ASH_EXPORT WindowTreeHostFactory {
+class ASH_EXPORT RootWindowHostFactory {
public:
- virtual ~WindowTreeHostFactory() {}
+ virtual ~RootWindowHostFactory() {}
- static WindowTreeHostFactory* Create();
+ static RootWindowHostFactory* Create();
- // Creates a new aura::WindowTreeHost. The caller owns the returned value.
- virtual aura::WindowTreeHost* CreateWindowTreeHost(
+ // Creates a new aura::RootWindowHost. The caller owns the returned value.
+ virtual aura::RootWindowHost* CreateRootWindowHost(
const gfx::Rect& initial_bounds) = 0;
protected:
- WindowTreeHostFactory() {}
+ RootWindowHostFactory() {}
};
} // namespace ash
« no previous file with comments | « trunk/src/ash/drag_drop/drag_drop_controller_unittest.cc ('k') | trunk/src/ash/host/root_window_host_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698