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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
222 virtual void setSpatialNavigationEnabled(bool) = 0; | 222 virtual void setSpatialNavigationEnabled(bool) = 0; |
223 virtual void setStandardFontFamily(const WebString&, UScriptCode = USCRIPT_C OMMON) = 0; | 223 virtual void setStandardFontFamily(const WebString&, UScriptCode = USCRIPT_C OMMON) = 0; |
224 virtual void setStrictMixedContentChecking(bool) = 0; | 224 virtual void setStrictMixedContentChecking(bool) = 0; |
225 virtual void setStrictPowerfulFeatureRestrictions(bool) = 0; | 225 virtual void setStrictPowerfulFeatureRestrictions(bool) = 0; |
226 virtual void setSupportDeprecatedTargetDensityDPI(bool) = 0; | 226 virtual void setSupportDeprecatedTargetDensityDPI(bool) = 0; |
227 virtual void setSupportsMultipleWindows(bool) = 0; | 227 virtual void setSupportsMultipleWindows(bool) = 0; |
228 virtual void setSyncXHRInDocumentsEnabled(bool) = 0; | 228 virtual void setSyncXHRInDocumentsEnabled(bool) = 0; |
229 virtual void setTextAreasAreResizable(bool) = 0; | 229 virtual void setTextAreasAreResizable(bool) = 0; |
230 virtual void setTextAutosizingEnabled(bool) = 0; | 230 virtual void setTextAutosizingEnabled(bool) = 0; |
231 virtual void setAccessibilityFontScaleFactor(float) = 0; | 231 virtual void setAccessibilityFontScaleFactor(float) = 0; |
232 virtual void setTextTrackBackgroundColor(const WebString&) = 0; | |
233 virtual void setTextTrackFontFamily(const WebString&) = 0; | |
234 virtual void setTextTrackFontStyle(const WebString&) = 0; | |
235 virtual void setTextTrackFontVariant(const WebString&) = 0; | |
236 virtual void setTextTrackTextColor(const WebString&) = 0; | |
237 virtual void setTextTrackTextShadow(const WebString&) = 0; | |
238 virtual void setTextTrackTextSize(const WebString&) = 0; | |
239 virtual void setTextTrackWindowColor(const WebString&) = 0; | |
philipj_slow
2015/02/18 03:33:14
I think this bit should wait until it's possible t
| |
232 virtual void setThreadedScrollingEnabled(bool) = 0; | 240 virtual void setThreadedScrollingEnabled(bool) = 0; |
233 virtual void setTouchDragDropEnabled(bool) = 0; | 241 virtual void setTouchDragDropEnabled(bool) = 0; |
234 virtual void setTouchEditingEnabled(bool) = 0; | 242 virtual void setTouchEditingEnabled(bool) = 0; |
235 virtual void setUnifiedTextCheckerEnabled(bool) = 0; | 243 virtual void setUnifiedTextCheckerEnabled(bool) = 0; |
236 virtual void setUnsafePluginPastingEnabled(bool) = 0; | 244 virtual void setUnsafePluginPastingEnabled(bool) = 0; |
237 virtual void setUseLegacyBackgroundSizeShorthandBehavior(bool) = 0; | 245 virtual void setUseLegacyBackgroundSizeShorthandBehavior(bool) = 0; |
238 virtual void setUseSolidColorScrollbars(bool) = 0; | 246 virtual void setUseSolidColorScrollbars(bool) = 0; |
239 virtual void setUseWideViewport(bool) = 0; | 247 virtual void setUseWideViewport(bool) = 0; |
240 virtual void setUsesEncodingDetector(bool) = 0; | 248 virtual void setUsesEncodingDetector(bool) = 0; |
241 virtual void setV8CacheOptions(V8CacheOptions) = 0; | 249 virtual void setV8CacheOptions(V8CacheOptions) = 0; |
(...skipping 10 matching lines...) Expand all Loading... | |
252 virtual void setWideViewportQuirkEnabled(bool) = 0; | 260 virtual void setWideViewportQuirkEnabled(bool) = 0; |
253 virtual void setXSSAuditorEnabled(bool) = 0; | 261 virtual void setXSSAuditorEnabled(bool) = 0; |
254 | 262 |
255 protected: | 263 protected: |
256 ~WebSettings() { } | 264 ~WebSettings() { } |
257 }; | 265 }; |
258 | 266 |
259 } // namespace blink | 267 } // namespace blink |
260 | 268 |
261 #endif | 269 #endif |
OLD | NEW |