| 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 <utility> | 7 #include <utility> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/bind.h" | 10 #include "base/bind.h" |
| 11 #include "base/command_line.h" | 11 #include "base/command_line.h" |
| 12 #include "base/location.h" | 12 #include "base/location.h" |
| 13 #include "base/logging.h" | 13 #include "base/logging.h" |
| 14 #include "base/memory/ptr_util.h" | 14 #include "base/memory/ptr_util.h" |
| 15 #include "base/sequenced_task_runner.h" | 15 #include "base/sequenced_task_runner.h" |
| 16 #include "base/threading/sequenced_task_runner_handle.h" | 16 #include "base/threading/sequenced_task_runner_handle.h" |
| 17 #include "base/threading/thread.h" | 17 #include "base/threading/thread.h" |
| 18 #include "base/threading/thread_task_runner_handle.h" | 18 #include "base/threading/thread_task_runner_handle.h" |
| 19 #include "blimp/client/core/blimp_client_switches.h" | 19 #include "blimp/client/core/blimp_client_switches.h" |
| 20 #include "blimp/client/core/contents/ime_feature.h" | 20 #include "blimp/client/core/contents/ime_feature.h" |
| 21 #include "blimp/client/core/contents/navigation_feature.h" | 21 #include "blimp/client/core/contents/navigation_feature.h" |
| 22 #include "blimp/client/core/contents/tab_control_feature.h" | 22 #include "blimp/client/core/contents/tab_control_feature.h" |
| 23 #include "blimp/client/core/render_widget/render_widget_feature.h" |
| 23 #include "blimp/client/core/session/client_network_components.h" | 24 #include "blimp/client/core/session/client_network_components.h" |
| 24 #include "blimp/client/core/session/cross_thread_network_event_observer.h" | 25 #include "blimp/client/core/session/cross_thread_network_event_observer.h" |
| 25 #include "blimp/client/feature/render_widget_feature.h" | 26 #include "blimp/client/core/settings/settings_feature.h" |
| 26 #include "blimp/client/feature/settings_feature.h" | |
| 27 #include "blimp/common/blob_cache/in_memory_blob_cache.h" | 27 #include "blimp/common/blob_cache/in_memory_blob_cache.h" |
| 28 #include "blimp/net/blimp_message_thread_pipe.h" | 28 #include "blimp/net/blimp_message_thread_pipe.h" |
| 29 #include "blimp/net/blimp_stats.h" | 29 #include "blimp/net/blimp_stats.h" |
| 30 #include "blimp/net/blob_channel/blob_channel_receiver.h" | 30 #include "blimp/net/blob_channel/blob_channel_receiver.h" |
| 31 #include "blimp/net/blob_channel/helium_blob_receiver_delegate.h" | 31 #include "blimp/net/blob_channel/helium_blob_receiver_delegate.h" |
| 32 #include "blimp/net/thread_pipe_manager.h" | 32 #include "blimp/net/thread_pipe_manager.h" |
| 33 #include "url/gurl.h" | 33 #include "url/gurl.h" |
| 34 | 34 |
| 35 namespace blimp { | 35 namespace blimp { |
| 36 namespace client { | 36 namespace client { |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 RenderWidgetFeature* BlimpClientSession::GetRenderWidgetFeature() const { | 167 RenderWidgetFeature* BlimpClientSession::GetRenderWidgetFeature() const { |
| 168 return render_widget_feature_.get(); | 168 return render_widget_feature_.get(); |
| 169 } | 169 } |
| 170 | 170 |
| 171 SettingsFeature* BlimpClientSession::GetSettingsFeature() const { | 171 SettingsFeature* BlimpClientSession::GetSettingsFeature() const { |
| 172 return settings_feature_.get(); | 172 return settings_feature_.get(); |
| 173 } | 173 } |
| 174 | 174 |
| 175 } // namespace client | 175 } // namespace client |
| 176 } // namespace blimp | 176 } // namespace blimp |
| OLD | NEW |