summaryrefslogtreecommitdiffstats
path: root/remoting/host/disconnect_window_mac.h
blob: fc6f9cb70c10245633d774abc8dd70f2b568a46b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright (c) 2011 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.

#import <Cocoa/Cocoa.h>

namespace remoting {
class ChromotingHost;
class DisconnectWindowMac;
}

@interface DisconnectWindowController : NSWindowController {
 @private
  remoting::ChromotingHost* host_;
  remoting::DisconnectWindowMac* disconnectWindow_;
  NSString* username_;
  IBOutlet NSTextField* usernameField_;
}

- (IBAction)stopSharing:(id)sender;
- (id)initWithHost:(remoting::ChromotingHost*)host
            window:(remoting::DisconnectWindowMac*)window
          username:(NSString*)username;
@end