Index: remoting/host/disconnect_window_mac.h |
diff --git a/remoting/host/disconnect_window_mac.h b/remoting/host/disconnect_window_mac.h |
index 6eedb16c7733be1dbda249324b234b54b4d6cd6f..692a23dbd88f41a41ad8981e8da54c3521ee3d33 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 |