OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 virtual void setRenderVSyncNotificationEnabled(bool); | 143 virtual void setRenderVSyncNotificationEnabled(bool); |
144 virtual void setReportScreenSizeInPhysicalPixelsQuirk(bool); | 144 virtual void setReportScreenSizeInPhysicalPixelsQuirk(bool); |
145 virtual void setSansSerifFontFamily(const WebString&, UScriptCode = USCRIPT_
COMMON); | 145 virtual void setSansSerifFontFamily(const WebString&, UScriptCode = USCRIPT_
COMMON); |
146 virtual void setSelectTrailingWhitespaceEnabled(bool); | 146 virtual void setSelectTrailingWhitespaceEnabled(bool); |
147 virtual void setSelectionIncludesAltImageText(bool); | 147 virtual void setSelectionIncludesAltImageText(bool); |
148 virtual void setSerifFontFamily(const WebString&, UScriptCode = USCRIPT_COMM
ON); | 148 virtual void setSerifFontFamily(const WebString&, UScriptCode = USCRIPT_COMM
ON); |
149 virtual void setShouldDisplayCaptions(bool); | 149 virtual void setShouldDisplayCaptions(bool); |
150 virtual void setShouldDisplaySubtitles(bool); | 150 virtual void setShouldDisplaySubtitles(bool); |
151 virtual void setShouldDisplayTextDescriptions(bool); | 151 virtual void setShouldDisplayTextDescriptions(bool); |
152 virtual void setShouldPrintBackgrounds(bool); | 152 virtual void setShouldPrintBackgrounds(bool); |
| 153 virtual void setShouldClearDocumentBackground(bool); |
153 virtual void setShouldRespectImageOrientation(bool); | 154 virtual void setShouldRespectImageOrientation(bool); |
154 virtual void setShowFPSCounter(bool); | 155 virtual void setShowFPSCounter(bool); |
155 virtual void setShowPaintRects(bool); | 156 virtual void setShowPaintRects(bool); |
156 virtual void setShrinksStandaloneImagesToFit(bool); | 157 virtual void setShrinksStandaloneImagesToFit(bool); |
157 virtual void setSmartInsertDeleteEnabled(bool); | 158 virtual void setSmartInsertDeleteEnabled(bool); |
158 virtual void setSpatialNavigationEnabled(bool); | 159 virtual void setSpatialNavigationEnabled(bool); |
159 virtual void setStandardFontFamily(const WebString&, UScriptCode = USCRIPT_C
OMMON); | 160 virtual void setStandardFontFamily(const WebString&, UScriptCode = USCRIPT_C
OMMON); |
160 virtual void setSupportDeprecatedTargetDensityDPI(bool); | 161 virtual void setSupportDeprecatedTargetDensityDPI(bool); |
161 virtual void setSupportsMultipleWindows(bool); | 162 virtual void setSupportsMultipleWindows(bool); |
162 virtual void setSyncXHRInDocumentsEnabled(bool); | 163 virtual void setSyncXHRInDocumentsEnabled(bool); |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 // the Android SDK prior to and including version 18. Presumably, this | 225 // the Android SDK prior to and including version 18. Presumably, this |
225 // can be removed any time after 2015. See http://crbug.com/313754. | 226 // can be removed any time after 2015. See http://crbug.com/313754. |
226 bool m_clobberUserAgentInitialScaleQuirk; | 227 bool m_clobberUserAgentInitialScaleQuirk; |
227 int m_pinchOverlayScrollbarThickness; | 228 int m_pinchOverlayScrollbarThickness; |
228 bool m_mainFrameResizesAreOrientationChanges; | 229 bool m_mainFrameResizesAreOrientationChanges; |
229 }; | 230 }; |
230 | 231 |
231 } // namespace blink | 232 } // namespace blink |
232 | 233 |
233 #endif | 234 #endif |
OLD | NEW |