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