| 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 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 bool ArcImeService::GetTextFromRange( | 282 bool ArcImeService::GetTextFromRange( |
| 283 const gfx::Range& range, base::string16* text) const { | 283 const gfx::Range& range, base::string16* text) const { |
| 284 return false; | 284 return false; |
| 285 } | 285 } |
| 286 | 286 |
| 287 bool ArcImeService::ChangeTextDirectionAndLayoutAlignment( | 287 bool ArcImeService::ChangeTextDirectionAndLayoutAlignment( |
| 288 base::i18n::TextDirection direction) { | 288 base::i18n::TextDirection direction) { |
| 289 return false; | 289 return false; |
| 290 } | 290 } |
| 291 | 291 |
| 292 bool ArcImeService::IsEditCommandEnabled(int command_id) const { | 292 bool ArcImeService::IsTextEditCommandEnabled( |
| 293 ui::TextEditCommand command) const { |
| 293 return false; | 294 return false; |
| 294 } | 295 } |
| 295 | 296 |
| 296 } // namespace arc | 297 } // namespace arc |
| OLD | NEW |