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

Unified Diff: ui/aura/root_window_host_mac.mm

Issue 160573002: Move root_window_host* in aura to window_tree_host*. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 10 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
deleted file mode 100644
index 3f18f177b81731c7a5963ffaa33b6d45437cce58..0000000000000000000000000000000000000000
--- a/ui/aura/root_window_host_mac.mm
+++ /dev/null
@@ -1,122 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include <Cocoa/Cocoa.h>
-
-#include "ui/aura/root_window_host_mac.h"
-#include "ui/aura/window_tree_host.h"
-#include "ui/aura/window_tree_host_delegate.h"
-
-namespace aura {
-
-WindowTreeHostMac::WindowTreeHostMac(const gfx::Rect& bounds) {
- window_.reset(
- [[NSWindow alloc]
- initWithContentRect:NSRectFromCGRect(bounds.ToCGRect())
- styleMask:NSBorderlessWindowMask
- backing:NSBackingStoreBuffered
- defer:NO]);
- CreateCompositor(GetAcceleratedWidget());
-}
-
-WindowTreeHostMac::~WindowTreeHostMac() {
-}
-
-RootWindow* WindowTreeHostMac::GetRootWindow() {
- return delegate_->AsRootWindow();
-}
-
-gfx::AcceleratedWidget WindowTreeHostMac::GetAcceleratedWidget() {
- return [window_ contentView];
-}
-void WindowTreeHostMac::Show() {
- [window_ makeKeyAndOrderFront:nil];
-}
-
-void WindowTreeHostMac::Hide() {
- [window_ orderOut:nil];
-}
-
-void WindowTreeHostMac::ToggleFullScreen() {
-}
-
-gfx::Rect WindowTreeHostMac::GetBounds() const {
- return gfx::Rect(NSRectToCGRect([window_ frame]));
-}
-
-void WindowTreeHostMac::SetBounds(const gfx::Rect& bounds) {
- [window_ setFrame:NSRectFromCGRect(bounds.ToCGRect()) display:YES animate:NO];
-}
-
-gfx::Insets WindowTreeHostMac::GetInsets() const {
- NOTIMPLEMENTED();
- return gfx::Insets();
-}
-
-void WindowTreeHostMac::SetInsets(const gfx::Insets& insets) {
- NOTIMPLEMENTED();
-}
-
-gfx::Point WindowTreeHostMac::GetLocationOnNativeScreen() const {
- NOTIMPLEMENTED();
- return gfx::Point(0, 0);
-}
-
-void WindowTreeHostMac::SetCapture() {
- NOTIMPLEMENTED();
-}
-
-void WindowTreeHostMac::ReleaseCapture() {
- NOTIMPLEMENTED();
-}
-
-void WindowTreeHostMac::SetCursor(gfx::NativeCursor cursor_type) {
- NOTIMPLEMENTED();
-}
-
-bool WindowTreeHostMac::QueryMouseLocation(gfx::Point* location_return) {
- NOTIMPLEMENTED();
- return false;
-}
-
-bool WindowTreeHostMac::ConfineCursorToRootWindow() {
- return false;
-}
-
-void WindowTreeHostMac::UnConfineCursor() {
- NOTIMPLEMENTED();
-}
-
-void WindowTreeHostMac::OnCursorVisibilityChanged(bool show) {
- NOTIMPLEMENTED();
-}
-
-void WindowTreeHostMac::MoveCursorTo(const gfx::Point& location) {
- NOTIMPLEMENTED();
-}
-
-void WindowTreeHostMac::PostNativeEvent(const base::NativeEvent& event) {
- NOTIMPLEMENTED();
-}
-
-void WindowTreeHostMac::OnDeviceScaleFactorChanged(float device_scale_factor) {
- NOTIMPLEMENTED();
-}
-
-void WindowTreeHostMac::PrepareForShutdown() {
- NOTIMPLEMENTED();
-}
-
-// static
-WindowTreeHost* WindowTreeHost::Create(const gfx::Rect& bounds) {
- return new WindowTreeHostMac(bounds);
-}
-
-// static
-gfx::Size WindowTreeHost::GetNativeScreenSize() {
- NOTIMPLEMENTED();
- return gfx::Size(1024, 768);
-}
-
-} // namespace aura
« 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