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 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 void setTextTrackBackgroundColor(const WebString&) override; | 169 void setTextTrackBackgroundColor(const WebString&) override; |
170 void setTextTrackFontFamily(const WebString&) override; | 170 void setTextTrackFontFamily(const WebString&) override; |
171 void setTextTrackFontStyle(const WebString&) override; | 171 void setTextTrackFontStyle(const WebString&) override; |
172 void setTextTrackFontVariant(const WebString&) override; | 172 void setTextTrackFontVariant(const WebString&) override; |
173 void setTextTrackMarginPercentage(float) override; | 173 void setTextTrackMarginPercentage(float) override; |
174 void setTextTrackTextColor(const WebString&) override; | 174 void setTextTrackTextColor(const WebString&) override; |
175 void setTextTrackTextShadow(const WebString&) override; | 175 void setTextTrackTextShadow(const WebString&) override; |
176 void setTextTrackTextSize(const WebString&) override; | 176 void setTextTrackTextSize(const WebString&) override; |
177 void setThreadedScrollingEnabled(bool) override; | 177 void setThreadedScrollingEnabled(bool) override; |
178 void setTouchDragDropEnabled(bool) override; | 178 void setTouchDragDropEnabled(bool) override; |
179 void setUsesEncodingDetector(bool) override; | |
180 void setUseLegacyBackgroundSizeShorthandBehavior(bool) override; | 179 void setUseLegacyBackgroundSizeShorthandBehavior(bool) override; |
181 void setViewportStyle(WebViewportStyle) override; | 180 void setViewportStyle(WebViewportStyle) override; |
182 void setUseSolidColorScrollbars(bool) override; | 181 void setUseSolidColorScrollbars(bool) override; |
183 void setUseWideViewport(bool) override; | 182 void setUseWideViewport(bool) override; |
184 void setV8CacheOptions(V8CacheOptions) override; | 183 void setV8CacheOptions(V8CacheOptions) override; |
185 void setV8CacheStrategiesForCacheStorage(V8CacheStrategiesForCacheStorage) o
verride; | 184 void setV8CacheStrategiesForCacheStorage(V8CacheStrategiesForCacheStorage) o
verride; |
186 void setValidationMessageTimerMagnification(int) override; | 185 void setValidationMessageTimerMagnification(int) override; |
187 void setViewportEnabled(bool) override; | 186 void setViewportEnabled(bool) override; |
188 void setViewportMetaEnabled(bool) override; | 187 void setViewportMetaEnabled(bool) override; |
189 void setViewportMetaLayoutSizeQuirk(bool) override; | 188 void setViewportMetaLayoutSizeQuirk(bool) override; |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
230 bool m_viewportMetaNonUserScalableQuirk; | 229 bool m_viewportMetaNonUserScalableQuirk; |
231 // This quirk is to maintain compatibility with Android apps built on | 230 // This quirk is to maintain compatibility with Android apps built on |
232 // the Android SDK prior to and including version 18. Presumably, this | 231 // the Android SDK prior to and including version 18. Presumably, this |
233 // 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. |
234 bool m_clobberUserAgentInitialScaleQuirk; | 233 bool m_clobberUserAgentInitialScaleQuirk; |
235 }; | 234 }; |
236 | 235 |
237 } // namespace blink | 236 } // namespace blink |
238 | 237 |
239 #endif | 238 #endif |
OLD | NEW |