OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "remoting/client/chromoting_session.h" | 5 #include "remoting/client/chromoting_session.h" |
6 | 6 |
7 #include <stdint.h> | 7 #include <stdint.h> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/callback_helpers.h" | 10 #include "base/callback_helpers.h" |
11 #include "base/format_macros.h" | 11 #include "base/format_macros.h" |
12 #include "base/logging.h" | 12 #include "base/logging.h" |
13 #include "base/memory/ptr_util.h" | 13 #include "base/memory/ptr_util.h" |
14 #include "jingle/glue/thread_wrapper.h" | 14 #include "jingle/glue/thread_wrapper.h" |
15 #include "net/socket/client_socket_factory.h" | 15 #include "net/socket/client_socket_factory.h" |
16 #include "remoting/base/chromium_url_request.h" | 16 #include "remoting/base/chromium_url_request.h" |
17 #include "remoting/base/chromoting_event.h" | 17 #include "remoting/base/chromoting_event.h" |
18 #include "remoting/client/audio_player.h" | 18 #include "remoting/client/audio_player.h" |
19 #include "remoting/client/chromoting_client_runtime.h" | 19 #include "remoting/client/chromoting_client_runtime.h" |
20 #include "remoting/client/client_telemetry_logger.h" | 20 #include "remoting/client/client_telemetry_logger.h" |
21 #include "remoting/client/native_device_keymap.h" | 21 #include "remoting/client/input/native_device_keymap.h" |
22 #include "remoting/protocol/chromium_port_allocator_factory.h" | 22 #include "remoting/protocol/chromium_port_allocator_factory.h" |
23 #include "remoting/protocol/chromium_socket_factory.h" | 23 #include "remoting/protocol/chromium_socket_factory.h" |
24 #include "remoting/protocol/client_authentication_config.h" | 24 #include "remoting/protocol/client_authentication_config.h" |
25 #include "remoting/protocol/frame_consumer.h" | 25 #include "remoting/protocol/frame_consumer.h" |
26 #include "remoting/protocol/host_stub.h" | 26 #include "remoting/protocol/host_stub.h" |
27 #include "remoting/protocol/network_settings.h" | 27 #include "remoting/protocol/network_settings.h" |
28 #include "remoting/protocol/performance_tracker.h" | 28 #include "remoting/protocol/performance_tracker.h" |
29 #include "remoting/protocol/transport_context.h" | 29 #include "remoting/protocol/transport_context.h" |
30 #include "remoting/protocol/video_renderer.h" | 30 #include "remoting/protocol/video_renderer.h" |
31 #include "remoting/signaling/server_log_entry.h" | 31 #include "remoting/signaling/server_log_entry.h" |
(...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
449 video_renderer_.reset(); | 449 video_renderer_.reset(); |
450 signaling_.reset(); | 450 signaling_.reset(); |
451 perf_tracker_.reset(); | 451 perf_tracker_.reset(); |
452 client_context_.reset(); | 452 client_context_.reset(); |
453 cursor_shape_stub_.reset(); | 453 cursor_shape_stub_.reset(); |
454 | 454 |
455 weak_factory_.InvalidateWeakPtrs(); | 455 weak_factory_.InvalidateWeakPtrs(); |
456 } | 456 } |
457 | 457 |
458 } // namespace remoting | 458 } // namespace remoting |
OLD | NEW |