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

Side by Side Diff: content/public/common/renderer_preferences.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
« no previous file with comments | « content/common/view_messages.h ('k') | content/public/common/renderer_preferences.cc » ('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 // A struct for managing browser's settings that apply to the renderer or its 5 // A struct for managing browser's settings that apply to the renderer or its
6 // webview. These differ from WebPreferences since they apply to Chromium's 6 // webview. These differ from WebPreferences since they apply to Chromium's
7 // glue layer rather than applying to just WebKit. 7 // glue layer rather than applying to just WebKit.
8 // 8 //
9 // Adding new values to this class probably involves updating 9 // Adding new values to this class probably involves updating
10 // common/view_messages.h, browser/browser.cc, etc. 10 // common/view_messages.h, browser/browser.cc, etc.
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 // The height of a horizontal scroll bar in dips. 162 // The height of a horizontal scroll bar in dips.
163 int32 horizontal_scroll_bar_height_in_dips; 163 int32 horizontal_scroll_bar_height_in_dips;
164 164
165 // The height of the arrow bitmap on a vertical scroll bar in dips. 165 // The height of the arrow bitmap on a vertical scroll bar in dips.
166 int32 arrow_bitmap_height_vertical_scroll_bar_in_dips; 166 int32 arrow_bitmap_height_vertical_scroll_bar_in_dips;
167 167
168 // The width of the arrow bitmap on a horizontal scroll bar in dips. 168 // The width of the arrow bitmap on a horizontal scroll bar in dips.
169 int32 arrow_bitmap_width_horizontal_scroll_bar_in_dips; 169 int32 arrow_bitmap_width_horizontal_scroll_bar_in_dips;
170 #endif 170 #endif
171 171
172 // The default font size used for rendering on Linux.
173 int default_font_size;
172 }; 174 };
173 175
174 } // namespace content 176 } // namespace content
175 177
176 #endif // CONTENT_PUBLIC_COMMON_RENDERER_PREFERENCES_H_ 178 #endif // CONTENT_PUBLIC_COMMON_RENDERER_PREFERENCES_H_
OLDNEW
« no previous file with comments | « content/common/view_messages.h ('k') | content/public/common/renderer_preferences.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698