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

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

Issue 7606028: Pass per-script fonts to WebKit settings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: revised patch to address sky's comment Created 9 years, 4 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/common_param_traits.h" 10 #include "content/common/common_param_traits.h"
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 IPC_STRUCT_TRAITS_MEMBER(availableRect) 273 IPC_STRUCT_TRAITS_MEMBER(availableRect)
274 IPC_STRUCT_TRAITS_END() 274 IPC_STRUCT_TRAITS_END()
275 275
276 IPC_STRUCT_TRAITS_BEGIN(WebPreferences) 276 IPC_STRUCT_TRAITS_BEGIN(WebPreferences)
277 IPC_STRUCT_TRAITS_MEMBER(standard_font_family) 277 IPC_STRUCT_TRAITS_MEMBER(standard_font_family)
278 IPC_STRUCT_TRAITS_MEMBER(fixed_font_family) 278 IPC_STRUCT_TRAITS_MEMBER(fixed_font_family)
279 IPC_STRUCT_TRAITS_MEMBER(serif_font_family) 279 IPC_STRUCT_TRAITS_MEMBER(serif_font_family)
280 IPC_STRUCT_TRAITS_MEMBER(sans_serif_font_family) 280 IPC_STRUCT_TRAITS_MEMBER(sans_serif_font_family)
281 IPC_STRUCT_TRAITS_MEMBER(cursive_font_family) 281 IPC_STRUCT_TRAITS_MEMBER(cursive_font_family)
282 IPC_STRUCT_TRAITS_MEMBER(fantasy_font_family) 282 IPC_STRUCT_TRAITS_MEMBER(fantasy_font_family)
283 IPC_STRUCT_TRAITS_MEMBER(standard_font_family_map)
284 IPC_STRUCT_TRAITS_MEMBER(fixed_font_family_map)
285 IPC_STRUCT_TRAITS_MEMBER(serif_font_family_map)
286 IPC_STRUCT_TRAITS_MEMBER(sans_serif_font_family_map)
287 IPC_STRUCT_TRAITS_MEMBER(cursive_font_family_map)
288 IPC_STRUCT_TRAITS_MEMBER(fantasy_font_family_map)
283 IPC_STRUCT_TRAITS_MEMBER(default_font_size) 289 IPC_STRUCT_TRAITS_MEMBER(default_font_size)
284 IPC_STRUCT_TRAITS_MEMBER(default_fixed_font_size) 290 IPC_STRUCT_TRAITS_MEMBER(default_fixed_font_size)
285 IPC_STRUCT_TRAITS_MEMBER(minimum_font_size) 291 IPC_STRUCT_TRAITS_MEMBER(minimum_font_size)
286 IPC_STRUCT_TRAITS_MEMBER(minimum_logical_font_size) 292 IPC_STRUCT_TRAITS_MEMBER(minimum_logical_font_size)
287 IPC_STRUCT_TRAITS_MEMBER(default_encoding) 293 IPC_STRUCT_TRAITS_MEMBER(default_encoding)
288 IPC_STRUCT_TRAITS_MEMBER(javascript_enabled) 294 IPC_STRUCT_TRAITS_MEMBER(javascript_enabled)
289 IPC_STRUCT_TRAITS_MEMBER(web_security_enabled) 295 IPC_STRUCT_TRAITS_MEMBER(web_security_enabled)
290 IPC_STRUCT_TRAITS_MEMBER(javascript_can_open_windows_automatically) 296 IPC_STRUCT_TRAITS_MEMBER(javascript_can_open_windows_automatically)
291 IPC_STRUCT_TRAITS_MEMBER(loads_images_automatically) 297 IPC_STRUCT_TRAITS_MEMBER(loads_images_automatically)
292 IPC_STRUCT_TRAITS_MEMBER(plugins_enabled) 298 IPC_STRUCT_TRAITS_MEMBER(plugins_enabled)
(...skipping 1782 matching lines...) Expand 10 before | Expand all | Expand 10 after
2075 int32 /* complete status */) 2081 int32 /* complete status */)
2076 2082
2077 // Request updated information about the client firewall traversal policy. 2083 // Request updated information about the client firewall traversal policy.
2078 // Will result in a ViewMsg_UpdateRemoteAccessClientFirewallTraversal message 2084 // Will result in a ViewMsg_UpdateRemoteAccessClientFirewallTraversal message
2079 // being sent back. 2085 // being sent back.
2080 IPC_MESSAGE_ROUTED0(ViewHostMsg_RequestRemoteAccessClientFirewallTraversal) 2086 IPC_MESSAGE_ROUTED0(ViewHostMsg_RequestRemoteAccessClientFirewallTraversal)
2081 2087
2082 // Notifies the browser of an event occurring in the media pipeline. 2088 // Notifies the browser of an event occurring in the media pipeline.
2083 IPC_MESSAGE_CONTROL1(ViewHostMsg_MediaLogEvent, 2089 IPC_MESSAGE_CONTROL1(ViewHostMsg_MediaLogEvent,
2084 media::MediaLogEvent /* event */) 2090 media::MediaLogEvent /* event */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698