Index: remoting/host/continue_window_win.cc |
diff --git a/remoting/host/continue_window_win.cc b/remoting/host/continue_window_win.cc |
index 0dcf907f0251ec09f5d7c5c055ff9603908702c2..1b06fd0d4c85f92d0921103f0d288bf2bf1efd15 100644 |
--- a/remoting/host/continue_window_win.cc |
+++ b/remoting/host/continue_window_win.cc |
@@ -21,7 +21,7 @@ namespace { |
class ContinueWindowWin : public ContinueWindow { |
public: |
- explicit ContinueWindowWin(const UiStrings& ui_strings); |
+ ContinueWindowWin(); |
virtual ~ContinueWindowWin(); |
protected: |
@@ -42,9 +42,8 @@ class ContinueWindowWin : public ContinueWindow { |
DISALLOW_COPY_AND_ASSIGN(ContinueWindowWin); |
}; |
-ContinueWindowWin::ContinueWindowWin(const UiStrings& ui_strings) |
- : ContinueWindow(ui_strings), |
- hwnd_(NULL) { |
+ContinueWindowWin::ContinueWindowWin() |
+ : hwnd_(NULL) { |
} |
ContinueWindowWin::~ContinueWindowWin() { |
@@ -129,9 +128,8 @@ void ContinueWindowWin::EndDialog() { |
} // namespace |
// static |
-scoped_ptr<HostWindow> HostWindow::CreateContinueWindow( |
- const UiStrings& ui_strings) { |
- return scoped_ptr<HostWindow>(new ContinueWindowWin(ui_strings)); |
+scoped_ptr<HostWindow> HostWindow::CreateContinueWindow() { |
+ return scoped_ptr<HostWindow>(new ContinueWindowWin()); |
} |
} // namespace remoting |