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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 void setAvailablePointerTypes(int) override; | 129 void setAvailablePointerTypes(int) override; |
130 void setPrimaryPointerType(PointerType) override; | 130 void setPrimaryPointerType(PointerType) override; |
131 void setAvailableHoverTypes(int) override; | 131 void setAvailableHoverTypes(int) override; |
132 void setPrimaryHoverType(HoverType) override; | 132 void setPrimaryHoverType(HoverType) override; |
133 void setPreferHiddenVolumeControls(bool) override; | 133 void setPreferHiddenVolumeControls(bool) override; |
134 void setRenderVSyncNotificationEnabled(bool) override; | 134 void setRenderVSyncNotificationEnabled(bool) override; |
135 void setReportScreenSizeInPhysicalPixelsQuirk(bool) override; | 135 void setReportScreenSizeInPhysicalPixelsQuirk(bool) override; |
136 void setRootLayerScrolls(bool) override; | 136 void setRootLayerScrolls(bool) override; |
137 void setRubberBandingOnCompositorThread(bool) override; | 137 void setRubberBandingOnCompositorThread(bool) override; |
138 void setSansSerifFontFamily(const WebString&, UScriptCode = USCRIPT_COMMON)
override; | 138 void setSansSerifFontFamily(const WebString&, UScriptCode = USCRIPT_COMMON)
override; |
139 void setScrollAnchoringEnabled(bool) override; | |
140 void setSelectTrailingWhitespaceEnabled(bool override); | 139 void setSelectTrailingWhitespaceEnabled(bool override); |
141 void setSelectionIncludesAltImageText(bool) override; | 140 void setSelectionIncludesAltImageText(bool) override; |
142 void setSelectionStrategy(SelectionStrategyType) override; | 141 void setSelectionStrategy(SelectionStrategyType) override; |
143 void setSerifFontFamily(const WebString&, UScriptCode = USCRIPT_COMMON) over
ride; | 142 void setSerifFontFamily(const WebString&, UScriptCode = USCRIPT_COMMON) over
ride; |
144 void setShouldPrintBackgrounds(bool) override; | 143 void setShouldPrintBackgrounds(bool) override; |
145 void setShouldClearDocumentBackground(bool) override; | 144 void setShouldClearDocumentBackground(bool) override; |
146 void setShouldRespectImageOrientation(bool) override; | 145 void setShouldRespectImageOrientation(bool) override; |
147 void setShowContextMenuOnMouseUp(bool) override; | 146 void setShowContextMenuOnMouseUp(bool) override; |
148 void setShowFPSCounter(bool) override; | 147 void setShowFPSCounter(bool) override; |
149 void setShowPaintRects(bool) override; | 148 void setShowPaintRects(bool) override; |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
227 bool m_viewportMetaNonUserScalableQuirk; | 226 bool m_viewportMetaNonUserScalableQuirk; |
228 // This quirk is to maintain compatibility with Android apps built on | 227 // This quirk is to maintain compatibility with Android apps built on |
229 // the Android SDK prior to and including version 18. Presumably, this | 228 // the Android SDK prior to and including version 18. Presumably, this |
230 // can be removed any time after 2015. See http://crbug.com/313754. | 229 // can be removed any time after 2015. See http://crbug.com/313754. |
231 bool m_clobberUserAgentInitialScaleQuirk; | 230 bool m_clobberUserAgentInitialScaleQuirk; |
232 }; | 231 }; |
233 | 232 |
234 } // namespace blink | 233 } // namespace blink |
235 | 234 |
236 #endif | 235 #endif |
OLD | NEW |