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

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

Issue 27361002: Chromium Side Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Base filesw Created 7 years, 2 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 | « no previous file | content/public/common/context_menu_params.h » ('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 (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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 IPC_STRUCT_TRAITS_MEMBER(frame_url) 173 IPC_STRUCT_TRAITS_MEMBER(frame_url)
174 IPC_STRUCT_TRAITS_MEMBER(frame_page_state) 174 IPC_STRUCT_TRAITS_MEMBER(frame_page_state)
175 IPC_STRUCT_TRAITS_MEMBER(media_flags) 175 IPC_STRUCT_TRAITS_MEMBER(media_flags)
176 IPC_STRUCT_TRAITS_MEMBER(selection_text) 176 IPC_STRUCT_TRAITS_MEMBER(selection_text)
177 IPC_STRUCT_TRAITS_MEMBER(misspelled_word) 177 IPC_STRUCT_TRAITS_MEMBER(misspelled_word)
178 IPC_STRUCT_TRAITS_MEMBER(misspelling_hash) 178 IPC_STRUCT_TRAITS_MEMBER(misspelling_hash)
179 IPC_STRUCT_TRAITS_MEMBER(dictionary_suggestions) 179 IPC_STRUCT_TRAITS_MEMBER(dictionary_suggestions)
180 IPC_STRUCT_TRAITS_MEMBER(speech_input_enabled) 180 IPC_STRUCT_TRAITS_MEMBER(speech_input_enabled)
181 IPC_STRUCT_TRAITS_MEMBER(spellcheck_enabled) 181 IPC_STRUCT_TRAITS_MEMBER(spellcheck_enabled)
182 IPC_STRUCT_TRAITS_MEMBER(is_editable) 182 IPC_STRUCT_TRAITS_MEMBER(is_editable)
183 #if defined(OS_MACOSX) 183 #if defined(OS_MACOSX) || defined(OS_LINUX)
184 IPC_STRUCT_TRAITS_MEMBER(writing_direction_default) 184 IPC_STRUCT_TRAITS_MEMBER(writing_direction_default)
185 IPC_STRUCT_TRAITS_MEMBER(writing_direction_left_to_right) 185 IPC_STRUCT_TRAITS_MEMBER(writing_direction_left_to_right)
186 IPC_STRUCT_TRAITS_MEMBER(writing_direction_right_to_left) 186 IPC_STRUCT_TRAITS_MEMBER(writing_direction_right_to_left)
187 #endif // OS_MACOSX 187 #endif // OS_MACOSX || defined(OS_LINUX)
188 IPC_STRUCT_TRAITS_MEMBER(edit_flags) 188 IPC_STRUCT_TRAITS_MEMBER(edit_flags)
189 IPC_STRUCT_TRAITS_MEMBER(security_info) 189 IPC_STRUCT_TRAITS_MEMBER(security_info)
190 IPC_STRUCT_TRAITS_MEMBER(frame_charset) 190 IPC_STRUCT_TRAITS_MEMBER(frame_charset)
191 IPC_STRUCT_TRAITS_MEMBER(referrer_policy) 191 IPC_STRUCT_TRAITS_MEMBER(referrer_policy)
192 IPC_STRUCT_TRAITS_MEMBER(custom_context) 192 IPC_STRUCT_TRAITS_MEMBER(custom_context)
193 IPC_STRUCT_TRAITS_MEMBER(custom_items) 193 IPC_STRUCT_TRAITS_MEMBER(custom_items)
194 IPC_STRUCT_TRAITS_MEMBER(source_type) 194 IPC_STRUCT_TRAITS_MEMBER(source_type)
195 #if defined(OS_ANDROID) 195 #if defined(OS_ANDROID)
196 IPC_STRUCT_TRAITS_MEMBER(selection_start) 196 IPC_STRUCT_TRAITS_MEMBER(selection_start)
197 IPC_STRUCT_TRAITS_MEMBER(selection_end) 197 IPC_STRUCT_TRAITS_MEMBER(selection_end)
(...skipping 2167 matching lines...) Expand 10 before | Expand all | Expand 10 after
2365 // synchronously (see crbug.com/120597). This IPC message sends the character 2365 // synchronously (see crbug.com/120597). This IPC message sends the character
2366 // bounds after every composition change to always have correct bound info. 2366 // bounds after every composition change to always have correct bound info.
2367 IPC_MESSAGE_ROUTED2(ViewHostMsg_ImeCompositionRangeChanged, 2367 IPC_MESSAGE_ROUTED2(ViewHostMsg_ImeCompositionRangeChanged,
2368 gfx::Range /* composition range */, 2368 gfx::Range /* composition range */,
2369 std::vector<gfx::Rect> /* character bounds */) 2369 std::vector<gfx::Rect> /* character bounds */)
2370 #endif 2370 #endif
2371 2371
2372 // Adding a new message? Stick to the sort order above: first platform 2372 // Adding a new message? Stick to the sort order above: first platform
2373 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform 2373 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform
2374 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. 2374 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg.
OLDNEW
« no previous file with comments | « no previous file | content/public/common/context_menu_params.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698