Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(157)

Unified Diff: remoting/host/continue_window_win.cc

Issue 20985002: Localized Chromoting Host on Mac and Linux. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/host/continue_window_mac.mm ('k') | remoting/host/desktop_process_main.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « remoting/host/continue_window_mac.mm ('k') | remoting/host/desktop_process_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698