diff options
Diffstat (limited to 'remoting/host/disconnect_window_mac.h')
-rw-r--r-- | remoting/host/disconnect_window_mac.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/remoting/host/disconnect_window_mac.h b/remoting/host/disconnect_window_mac.h index 6eedb16..692a23d 100644 --- a/remoting/host/disconnect_window_mac.h +++ b/remoting/host/disconnect_window_mac.h @@ -10,24 +10,18 @@ #include "base/strings/string16.h" #include "base/strings/utf_string_conversions.h" -namespace remoting { -struct UiStrings; -} - // Controller for the disconnect window which allows the host user to // quickly disconnect a session. @interface DisconnectWindowController : NSWindowController { @private - const remoting::UiStrings* ui_strings_; base::Closure disconnect_callback_; string16 username_; IBOutlet NSTextField* connectedToField_; IBOutlet NSButton* disconnectButton_; } -- (id)initWithUiStrings:(const remoting::UiStrings*)ui_strings - callback:(const base::Closure&)disconnect_callback - username:(const std::string&)username; +- (id)initWithCallback:(const base::Closure&)disconnect_callback + username:(const std::string&)username; - (IBAction)stopSharing:(id)sender; @end |