summaryrefslogtreecommitdiff
path: root/chromium/ui/aura/root_window_mac.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/ui/aura/root_window_mac.h')
-rw-r--r--chromium/ui/aura/root_window_mac.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/chromium/ui/aura/root_window_mac.h b/chromium/ui/aura/root_window_mac.h
deleted file mode 100644
index 13a044c21d2..00000000000
--- a/chromium/ui/aura/root_window_mac.h
+++ /dev/null
@@ -1,37 +0,0 @@
-// Copyright (c) 2012 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.
-
-#ifndef UI_AURA_ROOT_WINDOW_MAC_H_
-#define UI_AURA_ROOT_WINDOW_MAC_H_
-
-#import <Cocoa/Cocoa.h>
-
-namespace aura {
-class RootWindowHostMacDelegate;
-} // aura
-
-// RootWindow routes NSWindow events back to the RootWindowHost for dispatch
-// to the Aura event handling system.
-@interface RootWindowMac : NSWindow {
- @private
- // Weak. May be NULL. The host delegate acts as a conduit for event routing
- // back to the host.
- aura::RootWindowHostMacDelegate* hostDelegate_;
-}
-
-// Designated initializer.
-- (id)initWithContentRect:(NSRect)contentRect
- styleMask:(NSUInteger)windowStyle
- backing:(NSBackingStoreType)bufferingType
- defer:(BOOL)deferCreation;
-
-// Sets the |hostDelegate_|
-- (void)setHostDelegate:(aura::RootWindowHostMacDelegate*)hostDelegate;
-
-// Overrides main event dispatch to route NSWindow events to host delegate.
-- (void)sendEvent:(NSEvent*)event;
-
-@end
-
-#endif // UI_AURA_ROOT_WINDOW_MAC_H_