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

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

Issue 549303004: Allow default font size changing on Linux. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Win compile fix. Created 5 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
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 263 matching lines...) Expand 10 before | Expand all | Expand 10 after
274 IPC_STRUCT_TRAITS_MEMBER(menu_font_height) 274 IPC_STRUCT_TRAITS_MEMBER(menu_font_height)
275 IPC_STRUCT_TRAITS_MEMBER(status_font_family_name) 275 IPC_STRUCT_TRAITS_MEMBER(status_font_family_name)
276 IPC_STRUCT_TRAITS_MEMBER(status_font_height) 276 IPC_STRUCT_TRAITS_MEMBER(status_font_height)
277 IPC_STRUCT_TRAITS_MEMBER(message_font_family_name) 277 IPC_STRUCT_TRAITS_MEMBER(message_font_family_name)
278 IPC_STRUCT_TRAITS_MEMBER(message_font_height) 278 IPC_STRUCT_TRAITS_MEMBER(message_font_height)
279 IPC_STRUCT_TRAITS_MEMBER(vertical_scroll_bar_width_in_dips) 279 IPC_STRUCT_TRAITS_MEMBER(vertical_scroll_bar_width_in_dips)
280 IPC_STRUCT_TRAITS_MEMBER(horizontal_scroll_bar_height_in_dips) 280 IPC_STRUCT_TRAITS_MEMBER(horizontal_scroll_bar_height_in_dips)
281 IPC_STRUCT_TRAITS_MEMBER(arrow_bitmap_height_vertical_scroll_bar_in_dips) 281 IPC_STRUCT_TRAITS_MEMBER(arrow_bitmap_height_vertical_scroll_bar_in_dips)
282 IPC_STRUCT_TRAITS_MEMBER(arrow_bitmap_width_horizontal_scroll_bar_in_dips) 282 IPC_STRUCT_TRAITS_MEMBER(arrow_bitmap_width_horizontal_scroll_bar_in_dips)
283 #endif 283 #endif
284 IPC_STRUCT_TRAITS_MEMBER(default_font_size)
284 IPC_STRUCT_TRAITS_END() 285 IPC_STRUCT_TRAITS_END()
285 286
286 IPC_STRUCT_TRAITS_BEGIN(content::WebPluginGeometry) 287 IPC_STRUCT_TRAITS_BEGIN(content::WebPluginGeometry)
287 IPC_STRUCT_TRAITS_MEMBER(window) 288 IPC_STRUCT_TRAITS_MEMBER(window)
288 IPC_STRUCT_TRAITS_MEMBER(window_rect) 289 IPC_STRUCT_TRAITS_MEMBER(window_rect)
289 IPC_STRUCT_TRAITS_MEMBER(clip_rect) 290 IPC_STRUCT_TRAITS_MEMBER(clip_rect)
290 IPC_STRUCT_TRAITS_MEMBER(cutout_rects) 291 IPC_STRUCT_TRAITS_MEMBER(cutout_rects)
291 IPC_STRUCT_TRAITS_MEMBER(rects_valid) 292 IPC_STRUCT_TRAITS_MEMBER(rects_valid)
292 IPC_STRUCT_TRAITS_MEMBER(visible) 293 IPC_STRUCT_TRAITS_MEMBER(visible)
293 IPC_STRUCT_TRAITS_END() 294 IPC_STRUCT_TRAITS_END()
(...skipping 1317 matching lines...) Expand 10 before | Expand all | Expand 10 after
1611 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters 1612 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters
1612 // for details. 1613 // for details.
1613 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, 1614 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters,
1614 LOGFONT /* font_data */, 1615 LOGFONT /* font_data */,
1615 base::string16 /* characters */) 1616 base::string16 /* characters */)
1616 #endif 1617 #endif
1617 1618
1618 // Adding a new message? Stick to the sort order above: first platform 1619 // Adding a new message? Stick to the sort order above: first platform
1619 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform 1620 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform
1620 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. 1621 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698