summaryrefslogtreecommitdiffstats
path: root/remoting/host/host_window.h
diff options
context:
space:
mode:
Diffstat (limited to 'remoting/host/host_window.h')
-rw-r--r--remoting/host/host_window.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/remoting/host/host_window.h b/remoting/host/host_window.h
index 243f9ba..d193686 100644
--- a/remoting/host/host_window.h
+++ b/remoting/host/host_window.h
@@ -14,19 +14,16 @@
namespace remoting {
class ClientSessionControl;
-struct UiStrings;
class HostWindow : public base::NonThreadSafe {
public:
virtual ~HostWindow() {}
// Creates a platform-specific instance of the continue window.
- static scoped_ptr<HostWindow> CreateContinueWindow(
- const UiStrings& ui_strings);
+ static scoped_ptr<HostWindow> CreateContinueWindow();
// Creates a platform-specific instance of the disconnect window.
- static scoped_ptr<HostWindow> CreateDisconnectWindow(
- const UiStrings& ui_strings);
+ static scoped_ptr<HostWindow> CreateDisconnectWindow();
// Starts the UI state machine. |client_session_control| will be used to
// notify the caller about the local user's actions.