| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 void WebRuntimeFeatures::enableTouch(bool enable) | 210 void WebRuntimeFeatures::enableTouch(bool enable) |
| 211 { | 211 { |
| 212 RuntimeEnabledFeatures::setTouchEnabled(enable); | 212 RuntimeEnabledFeatures::setTouchEnabled(enable); |
| 213 } | 213 } |
| 214 | 214 |
| 215 void WebRuntimeFeatures::enableTouchIconLoading(bool enable) | 215 void WebRuntimeFeatures::enableTouchIconLoading(bool enable) |
| 216 { | 216 { |
| 217 RuntimeEnabledFeatures::setTouchIconLoadingEnabled(enable); | 217 RuntimeEnabledFeatures::setTouchIconLoadingEnabled(enable); |
| 218 } | 218 } |
| 219 | 219 |
| 220 void WebRuntimeFeatures::enableWebAnimationsSVG(bool enable) | |
| 221 { | |
| 222 RuntimeEnabledFeatures::setWebAnimationsSVGEnabled(enable); | |
| 223 } | |
| 224 | |
| 225 void WebRuntimeFeatures::enableWebAudio(bool enable) | 220 void WebRuntimeFeatures::enableWebAudio(bool enable) |
| 226 { | 221 { |
| 227 RuntimeEnabledFeatures::setWebAudioEnabled(enable); | 222 RuntimeEnabledFeatures::setWebAudioEnabled(enable); |
| 228 } | 223 } |
| 229 | 224 |
| 230 void WebRuntimeFeatures::enableWebGLDraftExtensions(bool enable) | 225 void WebRuntimeFeatures::enableWebGLDraftExtensions(bool enable) |
| 231 { | 226 { |
| 232 RuntimeEnabledFeatures::setWebGLDraftExtensionsEnabled(enable); | 227 RuntimeEnabledFeatures::setWebGLDraftExtensionsEnabled(enable); |
| 233 } | 228 } |
| 234 | 229 |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 { | 276 { |
| 282 RuntimeEnabledFeatures::setShowModalDialogEnabled(enable); | 277 RuntimeEnabledFeatures::setShowModalDialogEnabled(enable); |
| 283 } | 278 } |
| 284 | 279 |
| 285 void WebRuntimeFeatures::enableLaxMixedContentChecking(bool enable) | 280 void WebRuntimeFeatures::enableLaxMixedContentChecking(bool enable) |
| 286 { | 281 { |
| 287 RuntimeEnabledFeatures::setLaxMixedContentCheckingEnabled(enable); | 282 RuntimeEnabledFeatures::setLaxMixedContentCheckingEnabled(enable); |
| 288 } | 283 } |
| 289 | 284 |
| 290 } // namespace blink | 285 } // namespace blink |
| OLD | NEW |