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

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

Issue 302293003: MacViews: Extend TextInputClient protocol with support for editing commands. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase, fixes for ben Created 6 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 | Annotate | Revision Log
« no previous file with comments | « ui/base/ime/dummy_text_input_client.h ('k') | ui/base/ime/input_method_chromeos_unittest.cc » ('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/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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 104
105 void DummyTextInputClient::OnCandidateWindowShown() { 105 void DummyTextInputClient::OnCandidateWindowShown() {
106 } 106 }
107 107
108 void DummyTextInputClient::OnCandidateWindowUpdated() { 108 void DummyTextInputClient::OnCandidateWindowUpdated() {
109 } 109 }
110 110
111 void DummyTextInputClient::OnCandidateWindowHidden() { 111 void DummyTextInputClient::OnCandidateWindowHidden() {
112 } 112 }
113 113
114 bool DummyTextInputClient::IsEditingCommandEnabled(int command_id) {
115 return false;
116 }
117
118 void DummyTextInputClient::ExecuteEditingCommand(int command_id) {
119 }
120
114 } // namespace ui 121 } // namespace ui
OLDNEW
« no previous file with comments | « ui/base/ime/dummy_text_input_client.h ('k') | ui/base/ime/input_method_chromeos_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698