OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include <gtk/gtk.h> | 5 #include <gtk/gtk.h> |
6 | 6 |
7 #include "base/compiler_specific.h" | 7 #include "base/compiler_specific.h" |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
9 #include "base/utf_string_conversions.h" | 9 #include "base/strings/utf_string_conversions.h" |
10 #include "remoting/host/continue_window.h" | 10 #include "remoting/host/continue_window.h" |
11 #include "ui/base/gtk/gtk_signal.h" | 11 #include "ui/base/gtk/gtk_signal.h" |
12 | 12 |
13 namespace remoting { | 13 namespace remoting { |
14 | 14 |
15 class ContinueWindowGtk : public ContinueWindow { | 15 class ContinueWindowGtk : public ContinueWindow { |
16 public: | 16 public: |
17 explicit ContinueWindowGtk(const UiStrings& ui_strings); | 17 explicit ContinueWindowGtk(const UiStrings& ui_strings); |
18 virtual ~ContinueWindowGtk(); | 18 virtual ~ContinueWindowGtk(); |
19 | 19 |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 HideUi(); | 112 HideUi(); |
113 } | 113 } |
114 | 114 |
115 // static | 115 // static |
116 scoped_ptr<HostWindow> HostWindow::CreateContinueWindow( | 116 scoped_ptr<HostWindow> HostWindow::CreateContinueWindow( |
117 const UiStrings& ui_strings) { | 117 const UiStrings& ui_strings) { |
118 return scoped_ptr<HostWindow>(new ContinueWindowGtk(ui_strings)); | 118 return scoped_ptr<HostWindow>(new ContinueWindowGtk(ui_strings)); |
119 } | 119 } |
120 | 120 |
121 } // namespace remoting | 121 } // namespace remoting |
OLD | NEW |