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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 virtual void setNeedsSiteSpecificQuirks(bool) OVERRIDE; | 124 virtual void setNeedsSiteSpecificQuirks(bool) OVERRIDE; |
125 virtual void setOfflineWebApplicationCacheEnabled(bool) OVERRIDE; | 125 virtual void setOfflineWebApplicationCacheEnabled(bool) OVERRIDE; |
126 virtual void setOpenGLMultisamplingEnabled(bool) OVERRIDE; | 126 virtual void setOpenGLMultisamplingEnabled(bool) OVERRIDE; |
127 virtual void setPasswordEchoDurationInSeconds(double) OVERRIDE; | 127 virtual void setPasswordEchoDurationInSeconds(double) OVERRIDE; |
128 virtual void setPasswordEchoEnabled(bool) OVERRIDE; | 128 virtual void setPasswordEchoEnabled(bool) OVERRIDE; |
129 virtual void setPerTilePaintingEnabled(bool) OVERRIDE; | 129 virtual void setPerTilePaintingEnabled(bool) OVERRIDE; |
130 virtual void setPictographFontFamily(const WebString&, UScriptCode = USCRIPT
_COMMON) OVERRIDE; | 130 virtual void setPictographFontFamily(const WebString&, UScriptCode = USCRIPT
_COMMON) OVERRIDE; |
131 virtual void setPinchOverlayScrollbarThickness(int) OVERRIDE; | 131 virtual void setPinchOverlayScrollbarThickness(int) OVERRIDE; |
132 virtual void setPinchVirtualViewportEnabled(bool) OVERRIDE; | 132 virtual void setPinchVirtualViewportEnabled(bool) OVERRIDE; |
133 virtual void setPluginsEnabled(bool) OVERRIDE; | 133 virtual void setPluginsEnabled(bool) OVERRIDE; |
134 virtual void setPrivilegedWebGLExtensionsEnabled(bool) OVERRIDE; | |
135 virtual void setRenderVSyncNotificationEnabled(bool) OVERRIDE; | 134 virtual void setRenderVSyncNotificationEnabled(bool) OVERRIDE; |
136 virtual void setReportScreenSizeInPhysicalPixelsQuirk(bool) OVERRIDE; | 135 virtual void setReportScreenSizeInPhysicalPixelsQuirk(bool) OVERRIDE; |
137 virtual void setSansSerifFontFamily(const WebString&, UScriptCode = USCRIPT_
COMMON) OVERRIDE; | 136 virtual void setSansSerifFontFamily(const WebString&, UScriptCode = USCRIPT_
COMMON) OVERRIDE; |
138 virtual void setSelectTrailingWhitespaceEnabled(bool OVERRIDE); | 137 virtual void setSelectTrailingWhitespaceEnabled(bool OVERRIDE); |
139 virtual void setSelectionIncludesAltImageText(bool) OVERRIDE; | 138 virtual void setSelectionIncludesAltImageText(bool) OVERRIDE; |
140 virtual void setSerifFontFamily(const WebString&, UScriptCode = USCRIPT_COMM
ON) OVERRIDE; | 139 virtual void setSerifFontFamily(const WebString&, UScriptCode = USCRIPT_COMM
ON) OVERRIDE; |
141 virtual void setShouldPrintBackgrounds(bool) OVERRIDE; | 140 virtual void setShouldPrintBackgrounds(bool) OVERRIDE; |
142 virtual void setShouldClearDocumentBackground(bool) OVERRIDE; | 141 virtual void setShouldClearDocumentBackground(bool) OVERRIDE; |
143 virtual void setShouldRespectImageOrientation(bool) OVERRIDE; | 142 virtual void setShouldRespectImageOrientation(bool) OVERRIDE; |
144 virtual void setShowFPSCounter(bool) OVERRIDE; | 143 virtual void setShowFPSCounter(bool) OVERRIDE; |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 // This quirk is to maintain compatibility with Android apps built on | 212 // This quirk is to maintain compatibility with Android apps built on |
214 // the Android SDK prior to and including version 18. Presumably, this | 213 // the Android SDK prior to and including version 18. Presumably, this |
215 // can be removed any time after 2015. See http://crbug.com/313754. | 214 // can be removed any time after 2015. See http://crbug.com/313754. |
216 bool m_clobberUserAgentInitialScaleQuirk; | 215 bool m_clobberUserAgentInitialScaleQuirk; |
217 bool m_mainFrameResizesAreOrientationChanges; | 216 bool m_mainFrameResizesAreOrientationChanges; |
218 }; | 217 }; |
219 | 218 |
220 } // namespace blink | 219 } // namespace blink |
221 | 220 |
222 #endif | 221 #endif |
OLD | NEW |