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

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

Issue 1958543002: requestAutocomplete: remove from web platform (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Document-createEvent-expected.txt Created 4 years, 7 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
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 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebFormElement.cpp ('k') | third_party/WebKit/public/web/WebAutofillClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698