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

Side by Side Diff: content/common/view_messages.h

Issue 83163002: [Aura] Adding Writing direction to the context menu for Aura. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Aura-CrOS-Win 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // IPC messages for page rendering. 5 // IPC messages for page rendering.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include "base/memory/shared_memory.h" 8 #include "base/memory/shared_memory.h"
9 #include "base/process/process.h" 9 #include "base/process/process.h"
10 #include "base/strings/string16.h" 10 #include "base/strings/string16.h"
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 IPC_STRUCT_TRAITS_MEMBER(frame_url) 179 IPC_STRUCT_TRAITS_MEMBER(frame_url)
180 IPC_STRUCT_TRAITS_MEMBER(frame_page_state) 180 IPC_STRUCT_TRAITS_MEMBER(frame_page_state)
181 IPC_STRUCT_TRAITS_MEMBER(media_flags) 181 IPC_STRUCT_TRAITS_MEMBER(media_flags)
182 IPC_STRUCT_TRAITS_MEMBER(selection_text) 182 IPC_STRUCT_TRAITS_MEMBER(selection_text)
183 IPC_STRUCT_TRAITS_MEMBER(misspelled_word) 183 IPC_STRUCT_TRAITS_MEMBER(misspelled_word)
184 IPC_STRUCT_TRAITS_MEMBER(misspelling_hash) 184 IPC_STRUCT_TRAITS_MEMBER(misspelling_hash)
185 IPC_STRUCT_TRAITS_MEMBER(dictionary_suggestions) 185 IPC_STRUCT_TRAITS_MEMBER(dictionary_suggestions)
186 IPC_STRUCT_TRAITS_MEMBER(speech_input_enabled) 186 IPC_STRUCT_TRAITS_MEMBER(speech_input_enabled)
187 IPC_STRUCT_TRAITS_MEMBER(spellcheck_enabled) 187 IPC_STRUCT_TRAITS_MEMBER(spellcheck_enabled)
188 IPC_STRUCT_TRAITS_MEMBER(is_editable) 188 IPC_STRUCT_TRAITS_MEMBER(is_editable)
189 #if defined(OS_MACOSX) || defined(TOOLKIT_GTK) 189 #if defined(OS_MACOSX) || defined(TOOLKIT_GTK) || defined(USE_AURA)
190 IPC_STRUCT_TRAITS_MEMBER(writing_direction_default) 190 IPC_STRUCT_TRAITS_MEMBER(writing_direction_default)
191 IPC_STRUCT_TRAITS_MEMBER(writing_direction_left_to_right) 191 IPC_STRUCT_TRAITS_MEMBER(writing_direction_left_to_right)
192 IPC_STRUCT_TRAITS_MEMBER(writing_direction_right_to_left) 192 IPC_STRUCT_TRAITS_MEMBER(writing_direction_right_to_left)
193 #endif // OS_MACOSX || defined(TOOLKIT_GTK) 193 #endif // OS_MACOSX || TOOLKIT_GTK || USE_AURA
194 IPC_STRUCT_TRAITS_MEMBER(edit_flags) 194 IPC_STRUCT_TRAITS_MEMBER(edit_flags)
195 IPC_STRUCT_TRAITS_MEMBER(security_info) 195 IPC_STRUCT_TRAITS_MEMBER(security_info)
196 IPC_STRUCT_TRAITS_MEMBER(frame_charset) 196 IPC_STRUCT_TRAITS_MEMBER(frame_charset)
197 IPC_STRUCT_TRAITS_MEMBER(referrer_policy) 197 IPC_STRUCT_TRAITS_MEMBER(referrer_policy)
198 IPC_STRUCT_TRAITS_MEMBER(custom_context) 198 IPC_STRUCT_TRAITS_MEMBER(custom_context)
199 IPC_STRUCT_TRAITS_MEMBER(custom_items) 199 IPC_STRUCT_TRAITS_MEMBER(custom_items)
200 IPC_STRUCT_TRAITS_MEMBER(source_type) 200 IPC_STRUCT_TRAITS_MEMBER(source_type)
201 #if defined(OS_ANDROID) 201 #if defined(OS_ANDROID)
202 IPC_STRUCT_TRAITS_MEMBER(selection_start) 202 IPC_STRUCT_TRAITS_MEMBER(selection_start)
203 IPC_STRUCT_TRAITS_MEMBER(selection_end) 203 IPC_STRUCT_TRAITS_MEMBER(selection_end)
(...skipping 2168 matching lines...) Expand 10 before | Expand all | Expand 10 after
2372 // synchronously (see crbug.com/120597). This IPC message sends the character 2372 // synchronously (see crbug.com/120597). This IPC message sends the character
2373 // bounds after every composition change to always have correct bound info. 2373 // bounds after every composition change to always have correct bound info.
2374 IPC_MESSAGE_ROUTED2(ViewHostMsg_ImeCompositionRangeChanged, 2374 IPC_MESSAGE_ROUTED2(ViewHostMsg_ImeCompositionRangeChanged,
2375 gfx::Range /* composition range */, 2375 gfx::Range /* composition range */,
2376 std::vector<gfx::Rect> /* character bounds */) 2376 std::vector<gfx::Rect> /* character bounds */)
2377 #endif 2377 #endif
2378 2378
2379 // Adding a new message? Stick to the sort order above: first platform 2379 // Adding a new message? Stick to the sort order above: first platform
2380 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform 2380 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform
2381 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. 2381 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698