| 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/app/session/blimp_client_session.h" | 5 #include "blimp/engine/browser_tests/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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 ImeFeature* BlimpClientSession::GetImeFeature() const { | 172 ImeFeature* BlimpClientSession::GetImeFeature() const { |
| 173 return ime_feature_.get(); | 173 return ime_feature_.get(); |
| 174 } | 174 } |
| 175 | 175 |
| 176 RenderWidgetFeature* BlimpClientSession::GetRenderWidgetFeature() const { | 176 RenderWidgetFeature* BlimpClientSession::GetRenderWidgetFeature() const { |
| 177 return render_widget_feature_.get(); | 177 return render_widget_feature_.get(); |
| 178 } | 178 } |
| 179 | 179 |
| 180 } // namespace client | 180 } // namespace client |
| 181 } // namespace blimp | 181 } // namespace blimp |
| OLD | NEW |