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

Unified Diff: ui/aura/root_window_host_mac.mm

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 | « ui/aura/root_window_host_mac.h ('k') | ui/aura/root_window_host_ozone.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura/root_window_host_mac.mm
diff --git a/ui/aura/root_window_host_mac.mm b/ui/aura/root_window_host_mac.mm
index b06f48768e6f5c283878d6bafcdaf485d30e8ae1..3f18f177b81731c7a5963ffaa33b6d45437cce58 100644
--- a/ui/aura/root_window_host_mac.mm
+++ b/ui/aura/root_window_host_mac.mm
@@ -10,7 +10,7 @@
namespace aura {
-RootWindowHostMac::RootWindowHostMac(const gfx::Rect& bounds) {
+WindowTreeHostMac::WindowTreeHostMac(const gfx::Rect& bounds) {
window_.reset(
[[NSWindow alloc]
initWithContentRect:NSRectFromCGRect(bounds.ToCGRect())
@@ -20,101 +20,101 @@ RootWindowHostMac::RootWindowHostMac(const gfx::Rect& bounds) {
CreateCompositor(GetAcceleratedWidget());
}
-RootWindowHostMac::~RootWindowHostMac() {
+WindowTreeHostMac::~WindowTreeHostMac() {
}
-RootWindow* RootWindowHostMac::GetRootWindow() {
+RootWindow* WindowTreeHostMac::GetRootWindow() {
return delegate_->AsRootWindow();
}
-gfx::AcceleratedWidget RootWindowHostMac::GetAcceleratedWidget() {
+gfx::AcceleratedWidget WindowTreeHostMac::GetAcceleratedWidget() {
return [window_ contentView];
}
-void RootWindowHostMac::Show() {
+void WindowTreeHostMac::Show() {
[window_ makeKeyAndOrderFront:nil];
}
-void RootWindowHostMac::Hide() {
+void WindowTreeHostMac::Hide() {
[window_ orderOut:nil];
}
-void RootWindowHostMac::ToggleFullScreen() {
+void WindowTreeHostMac::ToggleFullScreen() {
}
-gfx::Rect RootWindowHostMac::GetBounds() const {
+gfx::Rect WindowTreeHostMac::GetBounds() const {
return gfx::Rect(NSRectToCGRect([window_ frame]));
}
-void RootWindowHostMac::SetBounds(const gfx::Rect& bounds) {
+void WindowTreeHostMac::SetBounds(const gfx::Rect& bounds) {
[window_ setFrame:NSRectFromCGRect(bounds.ToCGRect()) display:YES animate:NO];
}
-gfx::Insets RootWindowHostMac::GetInsets() const {
+gfx::Insets WindowTreeHostMac::GetInsets() const {
NOTIMPLEMENTED();
return gfx::Insets();
}
-void RootWindowHostMac::SetInsets(const gfx::Insets& insets) {
+void WindowTreeHostMac::SetInsets(const gfx::Insets& insets) {
NOTIMPLEMENTED();
}
-gfx::Point RootWindowHostMac::GetLocationOnNativeScreen() const {
+gfx::Point WindowTreeHostMac::GetLocationOnNativeScreen() const {
NOTIMPLEMENTED();
return gfx::Point(0, 0);
}
-void RootWindowHostMac::SetCapture() {
+void WindowTreeHostMac::SetCapture() {
NOTIMPLEMENTED();
}
-void RootWindowHostMac::ReleaseCapture() {
+void WindowTreeHostMac::ReleaseCapture() {
NOTIMPLEMENTED();
}
-void RootWindowHostMac::SetCursor(gfx::NativeCursor cursor_type) {
+void WindowTreeHostMac::SetCursor(gfx::NativeCursor cursor_type) {
NOTIMPLEMENTED();
}
-bool RootWindowHostMac::QueryMouseLocation(gfx::Point* location_return) {
+bool WindowTreeHostMac::QueryMouseLocation(gfx::Point* location_return) {
NOTIMPLEMENTED();
return false;
}
-bool RootWindowHostMac::ConfineCursorToRootWindow() {
+bool WindowTreeHostMac::ConfineCursorToRootWindow() {
return false;
}
-void RootWindowHostMac::UnConfineCursor() {
+void WindowTreeHostMac::UnConfineCursor() {
NOTIMPLEMENTED();
}
-void RootWindowHostMac::OnCursorVisibilityChanged(bool show) {
+void WindowTreeHostMac::OnCursorVisibilityChanged(bool show) {
NOTIMPLEMENTED();
}
-void RootWindowHostMac::MoveCursorTo(const gfx::Point& location) {
+void WindowTreeHostMac::MoveCursorTo(const gfx::Point& location) {
NOTIMPLEMENTED();
}
-void RootWindowHostMac::PostNativeEvent(const base::NativeEvent& event) {
+void WindowTreeHostMac::PostNativeEvent(const base::NativeEvent& event) {
NOTIMPLEMENTED();
}
-void RootWindowHostMac::OnDeviceScaleFactorChanged(float device_scale_factor) {
+void WindowTreeHostMac::OnDeviceScaleFactorChanged(float device_scale_factor) {
NOTIMPLEMENTED();
}
-void RootWindowHostMac::PrepareForShutdown() {
+void WindowTreeHostMac::PrepareForShutdown() {
NOTIMPLEMENTED();
}
// static
-RootWindowHost* RootWindowHost::Create(const gfx::Rect& bounds) {
- return new RootWindowHostMac(bounds);
+WindowTreeHost* WindowTreeHost::Create(const gfx::Rect& bounds) {
+ return new WindowTreeHostMac(bounds);
}
// static
-gfx::Size RootWindowHost::GetNativeScreenSize() {
+gfx::Size WindowTreeHost::GetNativeScreenSize() {
NOTIMPLEMENTED();
return gfx::Size(1024, 768);
}
« no previous file with comments | « ui/aura/root_window_host_mac.h ('k') | ui/aura/root_window_host_ozone.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698