| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 void WebRuntimeFeatures::enableTestOnlyFeatures(bool enable) | 52 void WebRuntimeFeatures::enableTestOnlyFeatures(bool enable) |
| 53 { | 53 { |
| 54 RuntimeEnabledFeatures::setTestFeaturesEnabled(enable); | 54 RuntimeEnabledFeatures::setTestFeaturesEnabled(enable); |
| 55 } | 55 } |
| 56 | 56 |
| 57 void WebRuntimeFeatures::enableApplicationCache(bool enable) | 57 void WebRuntimeFeatures::enableApplicationCache(bool enable) |
| 58 { | 58 { |
| 59 RuntimeEnabledFeatures::setApplicationCacheEnabled(enable); | 59 RuntimeEnabledFeatures::setApplicationCacheEnabled(enable); |
| 60 } | 60 } |
| 61 | 61 |
| 62 |
| 63 void WebRuntimeFeatures::enableCompositedSelectionUpdates(bool enable) |
| 64 { |
| 65 RuntimeEnabledFeatures::setCompositedSelectionUpdatesEnabled(enable); |
| 66 } |
| 67 |
| 62 void WebRuntimeFeatures::enableDatabase(bool enable) | 68 void WebRuntimeFeatures::enableDatabase(bool enable) |
| 63 { | 69 { |
| 64 RuntimeEnabledFeatures::setDatabaseEnabled(enable); | 70 RuntimeEnabledFeatures::setDatabaseEnabled(enable); |
| 65 } | 71 } |
| 66 | 72 |
| 67 void WebRuntimeFeatures::enableDisplayList2dCanvas(bool enable) | 73 void WebRuntimeFeatures::enableDisplayList2dCanvas(bool enable) |
| 68 { | 74 { |
| 69 RuntimeEnabledFeatures::setDisplayList2dCanvasEnabled(enable); | 75 RuntimeEnabledFeatures::setDisplayList2dCanvasEnabled(enable); |
| 70 } | 76 } |
| 71 | 77 |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 { | 277 { |
| 272 RuntimeEnabledFeatures::setShowModalDialogEnabled(enable); | 278 RuntimeEnabledFeatures::setShowModalDialogEnabled(enable); |
| 273 } | 279 } |
| 274 | 280 |
| 275 void WebRuntimeFeatures::enableLaxMixedContentChecking(bool enable) | 281 void WebRuntimeFeatures::enableLaxMixedContentChecking(bool enable) |
| 276 { | 282 { |
| 277 RuntimeEnabledFeatures::setLaxMixedContentCheckingEnabled(enable); | 283 RuntimeEnabledFeatures::setLaxMixedContentCheckingEnabled(enable); |
| 278 } | 284 } |
| 279 | 285 |
| 280 } // namespace blink | 286 } // namespace blink |
| OLD | NEW |