OLD | NEW |
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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 // The height of a horizontal scroll bar in dips. | 168 // The height of a horizontal scroll bar in dips. |
169 int32 horizontal_scroll_bar_height_in_dips; | 169 int32 horizontal_scroll_bar_height_in_dips; |
170 | 170 |
171 // The height of the arrow bitmap on a vertical scroll bar in dips. | 171 // The height of the arrow bitmap on a vertical scroll bar in dips. |
172 int32 arrow_bitmap_height_vertical_scroll_bar_in_dips; | 172 int32 arrow_bitmap_height_vertical_scroll_bar_in_dips; |
173 | 173 |
174 // The width of the arrow bitmap on a horizontal scroll bar in dips. | 174 // The width of the arrow bitmap on a horizontal scroll bar in dips. |
175 int32 arrow_bitmap_width_horizontal_scroll_bar_in_dips; | 175 int32 arrow_bitmap_width_horizontal_scroll_bar_in_dips; |
176 #endif | 176 #endif |
177 | 177 |
| 178 // The default font size used for rendering on Linux. |
| 179 int default_font_size; |
178 }; | 180 }; |
179 | 181 |
180 } // namespace content | 182 } // namespace content |
181 | 183 |
182 #endif // CONTENT_PUBLIC_COMMON_RENDERER_PREFERENCES_H_ | 184 #endif // CONTENT_PUBLIC_COMMON_RENDERER_PREFERENCES_H_ |
OLD | NEW |