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

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

Issue 715733002: [Android] Show autofill popup after animation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix existing tests and add some more. Created 5 years, 12 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 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/rect.h" 6 #include "ui/gfx/rect.h"
7 7
8 namespace ui { 8 namespace ui {
9 9
10 DummyTextInputClient::DummyTextInputClient() 10 DummyTextInputClient::DummyTextInputClient()
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 void DummyTextInputClient::OnCandidateWindowHidden() { 115 void DummyTextInputClient::OnCandidateWindowHidden() {
116 } 116 }
117 117
118 bool DummyTextInputClient::IsEditingCommandEnabled(int command_id) { 118 bool DummyTextInputClient::IsEditingCommandEnabled(int command_id) {
119 return false; 119 return false;
120 } 120 }
121 121
122 void DummyTextInputClient::ExecuteEditingCommand(int command_id) { 122 void DummyTextInputClient::ExecuteEditingCommand(int command_id) {
123 } 123 }
124 124
125 void DummyTextInputClient::OnKeyboardBoundsUnchanged() {
126 }
127
125 } // namespace ui 128 } // namespace ui
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698