| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 "components/arc/ime/arc_ime_service.h" | 5 #include "components/arc/ime/arc_ime_service.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "components/arc/ime/arc_ime_bridge_impl.h" | 8 #include "components/arc/ime/arc_ime_bridge_impl.h" |
| 9 #include "components/exo/shell_surface.h" | 9 #include "components/exo/shell_surface.h" |
| 10 #include "components/exo/surface.h" | 10 #include "components/exo/surface.h" |
| (...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 289 | 289 |
| 290 bool ArcImeService::ChangeTextDirectionAndLayoutAlignment( | 290 bool ArcImeService::ChangeTextDirectionAndLayoutAlignment( |
| 291 base::i18n::TextDirection direction) { | 291 base::i18n::TextDirection direction) { |
| 292 return false; | 292 return false; |
| 293 } | 293 } |
| 294 | 294 |
| 295 bool ArcImeService::IsEditCommandEnabled(int command_id) { | 295 bool ArcImeService::IsEditCommandEnabled(int command_id) { |
| 296 return false; | 296 return false; |
| 297 } | 297 } |
| 298 | 298 |
| 299 const gfx::RenderText* ArcImeService::GetTextAtPointInWindow( |
| 300 const gfx::Point& point, |
| 301 gfx::Range* range, |
| 302 gfx::Point* baseline_point) { |
| 303 return nullptr; |
| 304 } |
| 305 |
| 299 } // namespace arc | 306 } // namespace arc |
| OLD | NEW |