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

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

Issue 80583002: [FYI] All-in-one OnCandidateWindow{Show,Update,Hide} (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 | Annotate | Revision Log
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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 return false; 92 return false;
93 } 93 }
94 94
95 void DummyTextInputClient::ExtendSelectionAndDelete(size_t before, 95 void DummyTextInputClient::ExtendSelectionAndDelete(size_t before,
96 size_t after) { 96 size_t after) {
97 } 97 }
98 98
99 void DummyTextInputClient::EnsureCaretInRect(const gfx::Rect& rect) { 99 void DummyTextInputClient::EnsureCaretInRect(const gfx::Rect& rect) {
100 } 100 }
101 101
102 void DummyTextInputClient::OnCandidateWindowShow() {
103 }
104
105 void DummyTextInputClient::OnCandidateWindowUpdate() {
106 }
107
108 void DummyTextInputClient::OnCandidateWindowHide() {
109 }
110
102 } // namespace ui 111 } // namespace ui
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698