Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(91)

Side by Side Diff: components/arc/ime/arc_ime_service.cc

Issue 2027133002: Modify ui::TextInputClient to use ui::TextEditCommand enum in place of resource ids. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@refactor4_up_down_mac
Patch Set: Address review comments. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 263 matching lines...) Expand 10 before | Expand all | Expand 10 after
274 bool ArcImeService::GetTextFromRange( 274 bool ArcImeService::GetTextFromRange(
275 const gfx::Range& range, base::string16* text) const { 275 const gfx::Range& range, base::string16* text) const {
276 return false; 276 return false;
277 } 277 }
278 278
279 bool ArcImeService::ChangeTextDirectionAndLayoutAlignment( 279 bool ArcImeService::ChangeTextDirectionAndLayoutAlignment(
280 base::i18n::TextDirection direction) { 280 base::i18n::TextDirection direction) {
281 return false; 281 return false;
282 } 282 }
283 283
284 bool ArcImeService::IsEditCommandEnabled(int command_id) const { 284 bool ArcImeService::IsTextEditCommandEnabled(
285 ui::TextEditCommand command) const {
285 return false; 286 return false;
286 } 287 }
287 288
288 } // namespace arc 289 } // namespace arc
OLDNEW
« no previous file with comments | « components/arc/ime/arc_ime_service.h ('k') | content/browser/renderer_host/render_widget_host_view_aura.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698