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 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
281 { | 287 { |
282 RuntimeEnabledFeatures::setShowModalDialogEnabled(enable); | 288 RuntimeEnabledFeatures::setShowModalDialogEnabled(enable); |
283 } | 289 } |
284 | 290 |
285 void WebRuntimeFeatures::enableLaxMixedContentChecking(bool enable) | 291 void WebRuntimeFeatures::enableLaxMixedContentChecking(bool enable) |
286 { | 292 { |
287 RuntimeEnabledFeatures::setLaxMixedContentCheckingEnabled(enable); | 293 RuntimeEnabledFeatures::setLaxMixedContentCheckingEnabled(enable); |
288 } | 294 } |
289 | 295 |
290 } // namespace blink | 296 } // namespace blink |
OLD | NEW |