| 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/app/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" |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 RenderWidgetFeature* BlimpClientSession::GetRenderWidgetFeature() const { | 185 RenderWidgetFeature* BlimpClientSession::GetRenderWidgetFeature() const { |
| 186 return render_widget_feature_.get(); | 186 return render_widget_feature_.get(); |
| 187 } | 187 } |
| 188 | 188 |
| 189 SettingsFeature* BlimpClientSession::GetSettingsFeature() const { | 189 SettingsFeature* BlimpClientSession::GetSettingsFeature() const { |
| 190 return settings_feature_.get(); | 190 return settings_feature_.get(); |
| 191 } | 191 } |
| 192 | 192 |
| 193 } // namespace client | 193 } // namespace client |
| 194 } // namespace blimp | 194 } // namespace blimp |
| OLD | NEW |