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

Side by Side Diff: ui/views/controls/prefix_selector.cc

Issue 145283006: Remove ui::TextInputClient::GetAttachedWindow Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 10 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/views/controls/prefix_selector.h ('k') | ui/views/controls/textfield/textfield.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/views/controls/prefix_selector.h" 5 #include "ui/views/controls/prefix_selector.h"
6 6
7 #include "base/i18n/case_conversion.h" 7 #include "base/i18n/case_conversion.h"
8 #include "ui/base/ime/text_input_type.h" 8 #include "ui/base/ime/text_input_type.h"
9 #include "ui/gfx/range/range.h" 9 #include "ui/gfx/range/range.h"
10 #include "ui/views/controls/prefix_delegate.h" 10 #include "ui/views/controls/prefix_delegate.h"
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 } 48 }
49 49
50 void PrefixSelector::InsertText(const base::string16& text) { 50 void PrefixSelector::InsertText(const base::string16& text) {
51 OnTextInput(text); 51 OnTextInput(text);
52 } 52 }
53 53
54 void PrefixSelector::InsertChar(base::char16 ch, int flags) { 54 void PrefixSelector::InsertChar(base::char16 ch, int flags) {
55 OnTextInput(base::string16(1, ch)); 55 OnTextInput(base::string16(1, ch));
56 } 56 }
57 57
58 gfx::NativeWindow PrefixSelector::GetAttachedWindow() const {
59 return prefix_delegate_->GetWidget()->GetNativeWindow();
60 }
61
62 ui::TextInputType PrefixSelector::GetTextInputType() const { 58 ui::TextInputType PrefixSelector::GetTextInputType() const {
63 return ui::TEXT_INPUT_TYPE_TEXT; 59 return ui::TEXT_INPUT_TYPE_TEXT;
64 } 60 }
65 61
66 ui::TextInputMode PrefixSelector::GetTextInputMode() const { 62 ui::TextInputMode PrefixSelector::GetTextInputMode() const {
67 return ui::TEXT_INPUT_MODE_DEFAULT; 63 return ui::TEXT_INPUT_MODE_DEFAULT;
68 } 64 }
69 65
70 bool PrefixSelector::CanComposeInline() const { 66 bool PrefixSelector::CanComposeInline() const {
71 return false; 67 return false;
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 return (model_text.size() >= lower_text.size()) && 184 return (model_text.size() >= lower_text.size()) &&
189 (model_text.compare(0, lower_text.size(), lower_text) == 0); 185 (model_text.compare(0, lower_text.size(), lower_text) == 0);
190 } 186 }
191 187
192 void PrefixSelector::ClearText() { 188 void PrefixSelector::ClearText() {
193 current_text_.clear(); 189 current_text_.clear();
194 time_of_last_key_ = base::TimeTicks(); 190 time_of_last_key_ = base::TimeTicks();
195 } 191 }
196 192
197 } // namespace views 193 } // namespace views
OLDNEW
« no previous file with comments | « ui/views/controls/prefix_selector.h ('k') | ui/views/controls/textfield/textfield.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698