Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(99)

Side by Side Diff: Source/web/WebRuntimeFeatures.cpp

Issue 599863002: Removed ScriptedSpeech from RuntimeEnabledFeature (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/platform/RuntimeEnabledFeatures.in ('k') | public/web/WebRuntimeFeatures.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 void WebRuntimeFeatures::enableRequestAutocomplete(bool enable) 196 void WebRuntimeFeatures::enableRequestAutocomplete(bool enable)
197 { 197 {
198 RuntimeEnabledFeatures::setRequestAutocompleteEnabled(enable); 198 RuntimeEnabledFeatures::setRequestAutocompleteEnabled(enable);
199 } 199 }
200 200
201 void WebRuntimeFeatures::enableScreenOrientation(bool enable) 201 void WebRuntimeFeatures::enableScreenOrientation(bool enable)
202 { 202 {
203 RuntimeEnabledFeatures::setScreenOrientationEnabled(enable); 203 RuntimeEnabledFeatures::setScreenOrientationEnabled(enable);
204 } 204 }
205 205
206 void WebRuntimeFeatures::enableScriptedSpeech(bool enable)
207 {
208 RuntimeEnabledFeatures::setScriptedSpeechEnabled(enable);
209 }
210
211 void WebRuntimeFeatures::enableServiceWorker(bool enable) 206 void WebRuntimeFeatures::enableServiceWorker(bool enable)
212 { 207 {
213 RuntimeEnabledFeatures::setServiceWorkerEnabled(enable); 208 RuntimeEnabledFeatures::setServiceWorkerEnabled(enable);
214 } 209 }
215 210
216 void WebRuntimeFeatures::enableSessionStorage(bool enable) 211 void WebRuntimeFeatures::enableSessionStorage(bool enable)
217 { 212 {
218 RuntimeEnabledFeatures::setSessionStorageEnabled(enable); 213 RuntimeEnabledFeatures::setSessionStorageEnabled(enable);
219 } 214 }
220 215
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 { 277 {
283 RuntimeEnabledFeatures::setShowModalDialogEnabled(enable); 278 RuntimeEnabledFeatures::setShowModalDialogEnabled(enable);
284 } 279 }
285 280
286 void WebRuntimeFeatures::enableLaxMixedContentChecking(bool enable) 281 void WebRuntimeFeatures::enableLaxMixedContentChecking(bool enable)
287 { 282 {
288 RuntimeEnabledFeatures::setLaxMixedContentCheckingEnabled(enable); 283 RuntimeEnabledFeatures::setLaxMixedContentCheckingEnabled(enable);
289 } 284 }
290 285
291 } // namespace blink 286 } // namespace blink
OLDNEW
« no previous file with comments | « Source/platform/RuntimeEnabledFeatures.in ('k') | public/web/WebRuntimeFeatures.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698