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

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

Issue 10544103: Chromium change of sharing some WebKit API between Android/Linux. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: For landing Created 8 years, 5 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 | « chrome/browser/renderer_preferences_util.cc ('k') | content/content_renderer.gypi » ('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/process.h" 8 #include "base/process.h"
9 #include "base/shared_memory.h" 9 #include "base/shared_memory.h"
10 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 IPC_STRUCT_TRAITS_MEMBER(searchable_form_encoding) 291 IPC_STRUCT_TRAITS_MEMBER(searchable_form_encoding)
292 IPC_STRUCT_TRAITS_MEMBER(password_form) 292 IPC_STRUCT_TRAITS_MEMBER(password_form)
293 IPC_STRUCT_TRAITS_MEMBER(contents_mime_type) 293 IPC_STRUCT_TRAITS_MEMBER(contents_mime_type)
294 IPC_STRUCT_TRAITS_MEMBER(socket_address) 294 IPC_STRUCT_TRAITS_MEMBER(socket_address)
295 IPC_STRUCT_TRAITS_END() 295 IPC_STRUCT_TRAITS_END()
296 296
297 IPC_STRUCT_TRAITS_BEGIN(content::RendererPreferences) 297 IPC_STRUCT_TRAITS_BEGIN(content::RendererPreferences)
298 IPC_STRUCT_TRAITS_MEMBER(can_accept_load_drops) 298 IPC_STRUCT_TRAITS_MEMBER(can_accept_load_drops)
299 IPC_STRUCT_TRAITS_MEMBER(should_antialias_text) 299 IPC_STRUCT_TRAITS_MEMBER(should_antialias_text)
300 IPC_STRUCT_TRAITS_MEMBER(hinting) 300 IPC_STRUCT_TRAITS_MEMBER(hinting)
301 IPC_STRUCT_TRAITS_MEMBER(use_autohinter)
302 IPC_STRUCT_TRAITS_MEMBER(use_bitmaps)
301 IPC_STRUCT_TRAITS_MEMBER(subpixel_rendering) 303 IPC_STRUCT_TRAITS_MEMBER(subpixel_rendering)
302 IPC_STRUCT_TRAITS_MEMBER(use_subpixel_positioning) 304 IPC_STRUCT_TRAITS_MEMBER(use_subpixel_positioning)
303 IPC_STRUCT_TRAITS_MEMBER(focus_ring_color) 305 IPC_STRUCT_TRAITS_MEMBER(focus_ring_color)
304 IPC_STRUCT_TRAITS_MEMBER(thumb_active_color) 306 IPC_STRUCT_TRAITS_MEMBER(thumb_active_color)
305 IPC_STRUCT_TRAITS_MEMBER(thumb_inactive_color) 307 IPC_STRUCT_TRAITS_MEMBER(thumb_inactive_color)
306 IPC_STRUCT_TRAITS_MEMBER(track_color) 308 IPC_STRUCT_TRAITS_MEMBER(track_color)
307 IPC_STRUCT_TRAITS_MEMBER(active_selection_bg_color) 309 IPC_STRUCT_TRAITS_MEMBER(active_selection_bg_color)
308 IPC_STRUCT_TRAITS_MEMBER(active_selection_fg_color) 310 IPC_STRUCT_TRAITS_MEMBER(active_selection_fg_color)
309 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_bg_color) 311 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_bg_color)
310 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_fg_color) 312 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_fg_color)
(...skipping 1812 matching lines...) Expand 10 before | Expand all | Expand 10 after
2123 // (according to the value of is_hung). The browser can give the user the 2125 // (according to the value of is_hung). The browser can give the user the
2124 // option of killing the plugin. 2126 // option of killing the plugin.
2125 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, 2127 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung,
2126 int /* plugin_child_id */, 2128 int /* plugin_child_id */,
2127 FilePath /* path */, 2129 FilePath /* path */,
2128 bool /* is_hung */) 2130 bool /* is_hung */)
2129 2131
2130 // Screen was rotated. Dispatched to the onorientationchange javascript API. 2132 // Screen was rotated. Dispatched to the onorientationchange javascript API.
2131 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, 2133 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent,
2132 int /* orientation */) 2134 int /* orientation */)
OLDNEW
« no previous file with comments | « chrome/browser/renderer_preferences_util.cc ('k') | content/content_renderer.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698