| 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 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 void WebRuntimeFeatures::enablePagePopup(bool enable) | 188 void WebRuntimeFeatures::enablePagePopup(bool enable) |
| 189 { | 189 { |
| 190 RuntimeEnabledFeatures::setPagePopupEnabled(enable); | 190 RuntimeEnabledFeatures::setPagePopupEnabled(enable); |
| 191 } | 191 } |
| 192 | 192 |
| 193 void WebRuntimeFeatures::enablePermissionsAPI(bool enable) | 193 void WebRuntimeFeatures::enablePermissionsAPI(bool enable) |
| 194 { | 194 { |
| 195 RuntimeEnabledFeatures::setPermissionsEnabled(enable); | 195 RuntimeEnabledFeatures::setPermissionsEnabled(enable); |
| 196 } | 196 } |
| 197 | 197 |
| 198 void WebRuntimeFeatures::enableRequestAutocomplete(bool enable) | |
| 199 { | |
| 200 RuntimeEnabledFeatures::setRequestAutocompleteEnabled(enable); | |
| 201 } | |
| 202 | |
| 203 void WebRuntimeFeatures::enableScriptedSpeech(bool enable) | 198 void WebRuntimeFeatures::enableScriptedSpeech(bool enable) |
| 204 { | 199 { |
| 205 RuntimeEnabledFeatures::setScriptedSpeechEnabled(enable); | 200 RuntimeEnabledFeatures::setScriptedSpeechEnabled(enable); |
| 206 } | 201 } |
| 207 | 202 |
| 208 void WebRuntimeFeatures::enableSlimmingPaintV2(bool enable) | 203 void WebRuntimeFeatures::enableSlimmingPaintV2(bool enable) |
| 209 { | 204 { |
| 210 RuntimeEnabledFeatures::setSlimmingPaintV2Enabled(enable); | 205 RuntimeEnabledFeatures::setSlimmingPaintV2Enabled(enable); |
| 211 } | 206 } |
| 212 | 207 |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 { | 294 { |
| 300 RuntimeEnabledFeatures::setWebFontsInterventionTriggerEnabled(enable); | 295 RuntimeEnabledFeatures::setWebFontsInterventionTriggerEnabled(enable); |
| 301 } | 296 } |
| 302 | 297 |
| 303 void WebRuntimeFeatures::enableScrollAnchoring(bool enable) | 298 void WebRuntimeFeatures::enableScrollAnchoring(bool enable) |
| 304 { | 299 { |
| 305 RuntimeEnabledFeatures::setScrollAnchoringEnabled(enable); | 300 RuntimeEnabledFeatures::setScrollAnchoringEnabled(enable); |
| 306 } | 301 } |
| 307 | 302 |
| 308 } // namespace blink | 303 } // namespace blink |
| OLD | NEW |