summaryrefslogtreecommitdiffstats
path: root/remoting/host/continue_window.h
diff options
context:
space:
mode:
Diffstat (limited to 'remoting/host/continue_window.h')
-rw-r--r--remoting/host/continue_window.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/remoting/host/continue_window.h b/remoting/host/continue_window.h
index fb5db00..4a48e16 100644
--- a/remoting/host/continue_window.h
+++ b/remoting/host/continue_window.h
@@ -9,7 +9,6 @@
#include "base/memory/weak_ptr.h"
#include "base/timer/timer.h"
#include "remoting/host/host_window.h"
-#include "remoting/host/ui_strings.h"
namespace remoting {
@@ -29,14 +28,12 @@ class ContinueWindow : public HostWindow {
void DisconnectSession();
protected:
- explicit ContinueWindow(const UiStrings& ui_strings);
+ ContinueWindow();
// Shows and hides the UI.
virtual void ShowUi() = 0;
virtual void HideUi() = 0;
- const UiStrings& ui_strings() const { return ui_strings_; }
-
private:
// Invoked periodically to ask for the local user whether the session should
// be continued.
@@ -51,9 +48,6 @@ class ContinueWindow : public HostWindow {
// Used to ask the local user whether the session should be continued.
base::OneShotTimer<ContinueWindow> session_expired_timer_;
- // Localized UI strings.
- UiStrings ui_strings_;
-
DISALLOW_COPY_AND_ASSIGN(ContinueWindow);
};