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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 // Disables rendering default error page when client choses to block a page. | 125 // Disables rendering default error page when client choses to block a page. |
126 // Corresponds to net::ERR_BLOCKED_BY_CLIENT. | 126 // Corresponds to net::ERR_BLOCKED_BY_CLIENT. |
127 bool disable_client_blocked_error_page; | 127 bool disable_client_blocked_error_page; |
128 | 128 |
129 // Determines whether plugins are allowed to enter fullscreen mode. | 129 // Determines whether plugins are allowed to enter fullscreen mode. |
130 bool plugin_fullscreen_allowed; | 130 bool plugin_fullscreen_allowed; |
131 | 131 |
132 // Whether video-overlay (hole-punching) should be used for the embedded | 132 // Whether video-overlay (hole-punching) should be used for the embedded |
133 // encrypted video. Currently only used by Android. | 133 // encrypted video. Currently only used by Android. |
134 bool use_video_overlay_for_embedded_encrypted_video; | 134 bool use_video_overlay_for_embedded_encrypted_video; |
| 135 |
| 136 // The default font size used for rendering on Linux. |
| 137 int default_font_size; |
135 }; | 138 }; |
136 | 139 |
137 } // namespace content | 140 } // namespace content |
138 | 141 |
139 #endif // CONTENT_PUBLIC_COMMON_RENDERER_PREFERENCES_H_ | 142 #endif // CONTENT_PUBLIC_COMMON_RENDERER_PREFERENCES_H_ |
OLD | NEW |