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 <windows.h> | 5 #include <windows.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/process_util.h" | 9 #include "base/process_util.h" |
10 #include "base/string_util.h" | 10 #include "base/strings/string_util.h" |
11 #include "base/strings/utf_string_conversions.h" | 11 #include "base/strings/utf_string_conversions.h" |
12 #include "base/win/scoped_gdi_object.h" | 12 #include "base/win/scoped_gdi_object.h" |
13 #include "base/win/scoped_hdc.h" | 13 #include "base/win/scoped_hdc.h" |
14 #include "base/win/scoped_select_object.h" | 14 #include "base/win/scoped_select_object.h" |
15 #include "remoting/host/client_session_control.h" | 15 #include "remoting/host/client_session_control.h" |
16 #include "remoting/host/host_window.h" | 16 #include "remoting/host/host_window.h" |
17 #include "remoting/host/ui_strings.h" | 17 #include "remoting/host/ui_strings.h" |
18 #include "remoting/host/win/core_resource.h" | 18 #include "remoting/host/win/core_resource.h" |
19 | 19 |
20 namespace remoting { | 20 namespace remoting { |
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
390 | 390 |
391 } // namespace | 391 } // namespace |
392 | 392 |
393 // static | 393 // static |
394 scoped_ptr<HostWindow> HostWindow::CreateDisconnectWindow( | 394 scoped_ptr<HostWindow> HostWindow::CreateDisconnectWindow( |
395 const UiStrings& ui_strings) { | 395 const UiStrings& ui_strings) { |
396 return scoped_ptr<HostWindow>(new DisconnectWindowWin(ui_strings)); | 396 return scoped_ptr<HostWindow>(new DisconnectWindowWin(ui_strings)); |
397 } | 397 } |
398 | 398 |
399 } // namespace remoting | 399 } // namespace remoting |
OLD | NEW |