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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 void setPasswordEchoDurationInSeconds(double) override; | 127 void setPasswordEchoDurationInSeconds(double) override; |
128 void setPasswordEchoEnabled(bool) override; | 128 void setPasswordEchoEnabled(bool) override; |
129 void setPerTilePaintingEnabled(bool) override; | 129 void setPerTilePaintingEnabled(bool) override; |
130 void setPictographFontFamily(const WebString&, UScriptCode = USCRIPT_COMMON)
override; | 130 void setPictographFontFamily(const WebString&, UScriptCode = USCRIPT_COMMON)
override; |
131 void setPinchOverlayScrollbarThickness(int) override; | 131 void setPinchOverlayScrollbarThickness(int) override; |
132 void setPluginsEnabled(bool) override; | 132 void setPluginsEnabled(bool) override; |
133 void setAvailablePointerTypes(int) override; | 133 void setAvailablePointerTypes(int) override; |
134 void setPrimaryPointerType(PointerType) override; | 134 void setPrimaryPointerType(PointerType) override; |
135 void setAvailableHoverTypes(int) override; | 135 void setAvailableHoverTypes(int) override; |
136 void setPrimaryHoverType(HoverType) override; | 136 void setPrimaryHoverType(HoverType) override; |
| 137 void setPreferHiddenVolumeControls(bool) override; |
137 void setRenderVSyncNotificationEnabled(bool) override; | 138 void setRenderVSyncNotificationEnabled(bool) override; |
138 void setReportScreenSizeInPhysicalPixelsQuirk(bool) override; | 139 void setReportScreenSizeInPhysicalPixelsQuirk(bool) override; |
139 void setRootLayerScrolls(bool) override; | 140 void setRootLayerScrolls(bool) override; |
140 void setRubberBandingOnCompositorThread(bool) override; | 141 void setRubberBandingOnCompositorThread(bool) override; |
141 void setSansSerifFontFamily(const WebString&, UScriptCode = USCRIPT_COMMON)
override; | 142 void setSansSerifFontFamily(const WebString&, UScriptCode = USCRIPT_COMMON)
override; |
142 void setSelectTrailingWhitespaceEnabled(bool override); | 143 void setSelectTrailingWhitespaceEnabled(bool override); |
143 void setSelectionIncludesAltImageText(bool) override; | 144 void setSelectionIncludesAltImageText(bool) override; |
144 void setSelectionStrategy(SelectionStrategyType) override; | 145 void setSelectionStrategy(SelectionStrategyType) override; |
145 void setSerifFontFamily(const WebString&, UScriptCode = USCRIPT_COMMON) over
ride; | 146 void setSerifFontFamily(const WebString&, UScriptCode = USCRIPT_COMMON) over
ride; |
146 void setShouldPrintBackgrounds(bool) override; | 147 void setShouldPrintBackgrounds(bool) override; |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
231 // This quirk is to maintain compatibility with Android apps built on | 232 // This quirk is to maintain compatibility with Android apps built on |
232 // the Android SDK prior to and including version 18. Presumably, this | 233 // the Android SDK prior to and including version 18. Presumably, this |
233 // can be removed any time after 2015. See http://crbug.com/313754. | 234 // can be removed any time after 2015. See http://crbug.com/313754. |
234 bool m_clobberUserAgentInitialScaleQuirk; | 235 bool m_clobberUserAgentInitialScaleQuirk; |
235 bool m_mainFrameResizesAreOrientationChanges; | 236 bool m_mainFrameResizesAreOrientationChanges; |
236 }; | 237 }; |
237 | 238 |
238 } // namespace blink | 239 } // namespace blink |
239 | 240 |
240 #endif | 241 #endif |
OLD | NEW |