OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "blimp/client/session/blimp_client_session.h" | 5 #include "blimp/client/session/blimp_client_session.h" |
6 | 6 |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
11 #include "base/location.h" | 11 #include "base/location.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 "base/sequenced_task_runner.h" | 14 #include "base/sequenced_task_runner.h" |
15 #include "base/threading/sequenced_task_runner_handle.h" | 15 #include "base/threading/sequenced_task_runner_handle.h" |
16 #include "base/threading/thread.h" | 16 #include "base/threading/thread.h" |
17 #include "base/threading/thread_task_runner_handle.h" | 17 #include "base/threading/thread_task_runner_handle.h" |
18 #include "blimp/client/core/blimp_client_switches.h" | 18 #include "blimp/client/core/blimp_client_switches.h" |
19 #include "blimp/client/core/contents/navigation_feature.h" | 19 #include "blimp/client/core/contents/navigation_feature.h" |
20 #include "blimp/client/core/contents/tab_control_feature.h" | 20 #include "blimp/client/core/contents/tab_control_feature.h" |
| 21 #include "blimp/client/core/render_widget/render_widget_feature.h" |
21 #include "blimp/client/core/session/client_network_components.h" | 22 #include "blimp/client/core/session/client_network_components.h" |
22 #include "blimp/client/core/session/cross_thread_network_event_observer.h" | 23 #include "blimp/client/core/session/cross_thread_network_event_observer.h" |
23 #include "blimp/client/feature/ime_feature.h" | 24 #include "blimp/client/feature/ime_feature.h" |
24 #include "blimp/client/feature/render_widget_feature.h" | |
25 #include "blimp/client/feature/settings_feature.h" | 25 #include "blimp/client/feature/settings_feature.h" |
26 #include "blimp/common/blob_cache/in_memory_blob_cache.h" | 26 #include "blimp/common/blob_cache/in_memory_blob_cache.h" |
27 #include "blimp/net/blimp_message_thread_pipe.h" | 27 #include "blimp/net/blimp_message_thread_pipe.h" |
28 #include "blimp/net/blob_channel/blob_channel_receiver.h" | 28 #include "blimp/net/blob_channel/blob_channel_receiver.h" |
29 #include "blimp/net/blob_channel/helium_blob_receiver_delegate.h" | 29 #include "blimp/net/blob_channel/helium_blob_receiver_delegate.h" |
30 #include "blimp/net/thread_pipe_manager.h" | 30 #include "blimp/net/thread_pipe_manager.h" |
31 #include "url/gurl.h" | 31 #include "url/gurl.h" |
32 | 32 |
33 namespace blimp { | 33 namespace blimp { |
34 namespace client { | 34 namespace client { |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 return settings_feature_.get(); | 173 return settings_feature_.get(); |
174 } | 174 } |
175 | 175 |
176 BlimpConnectionStatistics* BlimpClientSession::GetBlimpConnectionStatistics() | 176 BlimpConnectionStatistics* BlimpClientSession::GetBlimpConnectionStatistics() |
177 const { | 177 const { |
178 return blimp_connection_statistics_; | 178 return blimp_connection_statistics_; |
179 } | 179 } |
180 | 180 |
181 } // namespace client | 181 } // namespace client |
182 } // namespace blimp | 182 } // namespace blimp |
OLD | NEW |