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

Side by Side Diff: ui/base/ime/dummy_text_input_client.cc

Issue 1163603004: Remove candidate show/hide/update related code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 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
« no previous file with comments | « ui/base/ime/dummy_text_input_client.h ('k') | ui/base/ime/input_method_base.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "ui/base/ime/dummy_text_input_client.h" 5 #include "ui/base/ime/dummy_text_input_client.h"
6 #include "ui/gfx/geometry/rect.h" 6 #include "ui/gfx/geometry/rect.h"
7 7
8 namespace ui { 8 namespace ui {
9 9
10 DummyTextInputClient::DummyTextInputClient() 10 DummyTextInputClient::DummyTextInputClient()
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 return false; 99 return false;
100 } 100 }
101 101
102 void DummyTextInputClient::ExtendSelectionAndDelete(size_t before, 102 void DummyTextInputClient::ExtendSelectionAndDelete(size_t before,
103 size_t after) { 103 size_t after) {
104 } 104 }
105 105
106 void DummyTextInputClient::EnsureCaretInRect(const gfx::Rect& rect) { 106 void DummyTextInputClient::EnsureCaretInRect(const gfx::Rect& rect) {
107 } 107 }
108 108
109 void DummyTextInputClient::OnCandidateWindowShown() {
110 }
111
112 void DummyTextInputClient::OnCandidateWindowUpdated() {
113 }
114
115 void DummyTextInputClient::OnCandidateWindowHidden() {
116 }
117
118 bool DummyTextInputClient::IsEditCommandEnabled(int command_id) { 109 bool DummyTextInputClient::IsEditCommandEnabled(int command_id) {
119 return false; 110 return false;
120 } 111 }
121 112
122 void DummyTextInputClient::SetEditCommandForNextKeyEvent(int command_id) { 113 void DummyTextInputClient::SetEditCommandForNextKeyEvent(int command_id) {
123 } 114 }
124 115
125 } // namespace ui 116 } // namespace ui
OLDNEW
« no previous file with comments | « ui/base/ime/dummy_text_input_client.h ('k') | ui/base/ime/input_method_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698