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