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

Side by Side Diff: ui/base/ime/ui_base_ime.gyp

Issue 2029733003: Views: Replace resource ids with ui::TextEditCommand enum for text editing commands in Textfield. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: === Created 4 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/text_input_client.h ('k') | ui/events/BUILD.gn » ('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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 'input_method_observer.h', 107 'input_method_observer.h',
108 'input_method_win.cc', 108 'input_method_win.cc',
109 'input_method_win.h', 109 'input_method_win.h',
110 'linux/fake_input_method_context.cc', 110 'linux/fake_input_method_context.cc',
111 'linux/fake_input_method_context.h', 111 'linux/fake_input_method_context.h',
112 'linux/fake_input_method_context_factory.cc', 112 'linux/fake_input_method_context_factory.cc',
113 'linux/fake_input_method_context_factory.h', 113 'linux/fake_input_method_context_factory.h',
114 'linux/linux_input_method_context.h', 114 'linux/linux_input_method_context.h',
115 'linux/linux_input_method_context_factory.cc', 115 'linux/linux_input_method_context_factory.cc',
116 'linux/linux_input_method_context_factory.h', 116 'linux/linux_input_method_context_factory.h',
117 'linux/text_edit_command_auralinux.cc',
118 'linux/text_edit_command_auralinux.h',
119 'linux/text_edit_key_bindings_delegate_auralinux.cc',
120 'linux/text_edit_key_bindings_delegate_auralinux.h',
117 'mock_input_method.cc', 121 'mock_input_method.cc',
118 'mock_input_method.h', 122 'mock_input_method.h',
123 'text_edit_commands.h',
119 'text_input_client.cc', 124 'text_input_client.cc',
120 'text_input_client.h', 125 'text_input_client.h',
121 'ui_base_ime_export.h', 126 'ui_base_ime_export.h',
122 'win/imm32_manager.cc', 127 'win/imm32_manager.cc',
123 'win/imm32_manager.h', 128 'win/imm32_manager.h',
124 'win/tsf_input_scope.cc', 129 'win/tsf_input_scope.cc',
125 'win/tsf_input_scope.h', 130 'win/tsf_input_scope.h',
126 ], 131 ],
127 'conditions': [ 132 'conditions': [
128 ['use_ozone==1', { 133 ['use_ozone==1', {
(...skipping 29 matching lines...) Expand all
158 'input_method_factory.cc', 163 'input_method_factory.cc',
159 'input_method_factory.h', 164 'input_method_factory.h',
160 'input_method_minimal.cc', 165 'input_method_minimal.cc',
161 'input_method_minimal.h', 166 'input_method_minimal.h',
162 ], 167 ],
163 }], 168 }],
164 ['chromeos==1', { 169 ['chromeos==1', {
165 'dependencies': [ 170 'dependencies': [
166 '../../../chromeos/chromeos.gyp:chromeos', 171 '../../../chromeos/chromeos.gyp:chromeos',
167 ], 172 ],
173 'sources!': [
174 'linux/text_edit_command_auralinux.cc',
175 'linux/text_edit_command_auralinux.h',
176 'linux/text_edit_key_bindings_delegate_auralinux.cc',
177 'linux/text_edit_key_bindings_delegate_auralinux.h',
178 ],
168 }], 179 }],
169 ['use_aura==0 or (desktop_linux==0 and use_ozone==0)', { 180 ['use_aura==0 or (desktop_linux==0 and use_ozone==0)', {
170 'sources!': [ 181 'sources!': [
171 'input_method_auralinux.cc', 182 'input_method_auralinux.cc',
172 'input_method_auralinux.h', 183 'input_method_auralinux.h',
173 'linux/fake_input_method_context.cc', 184 'linux/fake_input_method_context.cc',
174 'linux/fake_input_method_context.h', 185 'linux/fake_input_method_context.h',
175 'linux/fake_input_method_context_factory.cc', 186 'linux/fake_input_method_context_factory.cc',
176 'linux/fake_input_method_context_factory.h', 187 'linux/fake_input_method_context_factory.h',
177 'linux/linux_input_method_context.h', 188 'linux/linux_input_method_context.h',
178 'linux/linux_input_method_context_factory.cc', 189 'linux/linux_input_method_context_factory.cc',
179 'linux/linux_input_method_context_factory.h', 190 'linux/linux_input_method_context_factory.h',
180 ], 191 ],
181 }], 192 }],
182 ['use_x11==0', { 193 ['use_x11==0', {
183 'sources!': [ 194 'sources!': [
184 'composition_text_util_pango.cc', 195 'composition_text_util_pango.cc',
185 'composition_text_util_pango.h', 196 'composition_text_util_pango.h',
186 ], 197 ],
187 }], 198 }],
188 ], 199 ],
189 }, 200 },
190 ], 201 ],
191 } 202 }
OLDNEW
« no previous file with comments | « ui/base/ime/text_input_client.h ('k') | ui/events/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698