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

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

Issue 10107014: Migrate WebKit "global script" font prefs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review comments Created 8 years, 7 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) 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 IPC_STRUCT_TRAITS_MEMBER(verticalDPI) 121 IPC_STRUCT_TRAITS_MEMBER(verticalDPI)
122 IPC_STRUCT_TRAITS_MEMBER(horizontalDPI) 122 IPC_STRUCT_TRAITS_MEMBER(horizontalDPI)
123 IPC_STRUCT_TRAITS_MEMBER(depth) 123 IPC_STRUCT_TRAITS_MEMBER(depth)
124 IPC_STRUCT_TRAITS_MEMBER(depthPerComponent) 124 IPC_STRUCT_TRAITS_MEMBER(depthPerComponent)
125 IPC_STRUCT_TRAITS_MEMBER(isMonochrome) 125 IPC_STRUCT_TRAITS_MEMBER(isMonochrome)
126 IPC_STRUCT_TRAITS_MEMBER(rect) 126 IPC_STRUCT_TRAITS_MEMBER(rect)
127 IPC_STRUCT_TRAITS_MEMBER(availableRect) 127 IPC_STRUCT_TRAITS_MEMBER(availableRect)
128 IPC_STRUCT_TRAITS_END() 128 IPC_STRUCT_TRAITS_END()
129 129
130 IPC_STRUCT_TRAITS_BEGIN(webkit_glue::WebPreferences) 130 IPC_STRUCT_TRAITS_BEGIN(webkit_glue::WebPreferences)
131 IPC_STRUCT_TRAITS_MEMBER(standard_font_family)
132 IPC_STRUCT_TRAITS_MEMBER(fixed_font_family)
133 IPC_STRUCT_TRAITS_MEMBER(serif_font_family)
134 IPC_STRUCT_TRAITS_MEMBER(sans_serif_font_family)
135 IPC_STRUCT_TRAITS_MEMBER(cursive_font_family)
136 IPC_STRUCT_TRAITS_MEMBER(fantasy_font_family)
137 IPC_STRUCT_TRAITS_MEMBER(standard_font_family_map) 131 IPC_STRUCT_TRAITS_MEMBER(standard_font_family_map)
138 IPC_STRUCT_TRAITS_MEMBER(fixed_font_family_map) 132 IPC_STRUCT_TRAITS_MEMBER(fixed_font_family_map)
139 IPC_STRUCT_TRAITS_MEMBER(serif_font_family_map) 133 IPC_STRUCT_TRAITS_MEMBER(serif_font_family_map)
140 IPC_STRUCT_TRAITS_MEMBER(sans_serif_font_family_map) 134 IPC_STRUCT_TRAITS_MEMBER(sans_serif_font_family_map)
141 IPC_STRUCT_TRAITS_MEMBER(cursive_font_family_map) 135 IPC_STRUCT_TRAITS_MEMBER(cursive_font_family_map)
142 IPC_STRUCT_TRAITS_MEMBER(fantasy_font_family_map) 136 IPC_STRUCT_TRAITS_MEMBER(fantasy_font_family_map)
143 IPC_STRUCT_TRAITS_MEMBER(default_font_size) 137 IPC_STRUCT_TRAITS_MEMBER(default_font_size)
144 IPC_STRUCT_TRAITS_MEMBER(default_fixed_font_size) 138 IPC_STRUCT_TRAITS_MEMBER(default_fixed_font_size)
145 IPC_STRUCT_TRAITS_MEMBER(default_device_scale_factor) 139 IPC_STRUCT_TRAITS_MEMBER(default_device_scale_factor)
146 IPC_STRUCT_TRAITS_MEMBER(minimum_font_size) 140 IPC_STRUCT_TRAITS_MEMBER(minimum_font_size)
(...skipping 1906 matching lines...) Expand 10 before | Expand all | Expand 10 after
2053 int /* automation_id */) 2047 int /* automation_id */)
2054 2048
2055 // Sent to the browser when the renderer detects it is blocked on a pepper 2049 // Sent to the browser when the renderer detects it is blocked on a pepper
2056 // plugin message for too long. This is also sent when it becomes unhung 2050 // plugin message for too long. This is also sent when it becomes unhung
2057 // (according to the value of is_hung). The browser can give the user the 2051 // (according to the value of is_hung). The browser can give the user the
2058 // option of killing the plugin. 2052 // option of killing the plugin.
2059 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, 2053 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung,
2060 int /* plugin_child_id */, 2054 int /* plugin_child_id */,
2061 FilePath /* path */, 2055 FilePath /* path */,
2062 bool /* is_hung */) 2056 bool /* is_hung */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698