summaryrefslogtreecommitdiffstats
path: root/remoting/host/disconnect_window_mac.h
diff options
context:
space:
mode:
authordmaclach@chromium.org <dmaclach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-19 19:33:03 +0000
committerdmaclach@chromium.org <dmaclach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-19 19:33:03 +0000
commit5569de8f27a8e0f8aadba007c30e37d7e0737454 (patch)
tree1b8181286e0ab01e5efe54b9a7f08094c99d9875 /remoting/host/disconnect_window_mac.h
parent094e4c0743cf1bee8a0b35fd637ab8b75b4d10a6 (diff)
downloadchromium_src-5569de8f27a8e0f8aadba007c30e37d7e0737454.zip
chromium_src-5569de8f27a8e0f8aadba007c30e37d7e0737454.tar.gz
chromium_src-5569de8f27a8e0f8aadba007c30e37d7e0737454.tar.bz2
New disconnect window (mac) for Chromoting.
Implements the new and improved disconnect window for Mac for Chromoting. BUG=NONE TEST=Show disconnect window on mac. Review URL: http://codereview.chromium.org/8333003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106347 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/disconnect_window_mac.h')
-rw-r--r--remoting/host/disconnect_window_mac.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/remoting/host/disconnect_window_mac.h b/remoting/host/disconnect_window_mac.h
index 7e1593f..727574f 100644
--- a/remoting/host/disconnect_window_mac.h
+++ b/remoting/host/disconnect_window_mac.h
@@ -9,6 +9,8 @@ class ChromotingHost;
class DisconnectWindowMac;
}
+// Controller for the disconnect window which allows the host user to
+// quickly disconnect a session.
@interface DisconnectWindowController : NSWindowController {
@private
remoting::ChromotingHost* host_;
@@ -23,3 +25,14 @@ class DisconnectWindowMac;
window:(remoting::DisconnectWindowMac*)window
username:(NSString*)username;
@end
+
+// A floating window with a custom border. The custom border and background
+// content is defined by DisconnectView. Declared here so that it can be
+// instantiated via a xib.
+@interface DisconnectWindow : NSWindow
+@end
+
+// The custom background/border for the DisconnectWindow. Declared here so that
+// it can be instantiated via a xib.
+@interface DisconnectView : NSView
+@end