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

Side by Side Diff: Source/WebCore/bindings/v8/RuntimeEnabledFeatures.cpp

Issue 13888003: Remove compile-time / run-time flags for input[type=date]. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 7 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « Source/WebCore/bindings/v8/RuntimeEnabledFeatures.h ('k') | Source/WebCore/css/html.css » ('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) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 #endif 179 #endif
180 180
181 #if ENABLE(CUSTOM_ELEMENTS) 181 #if ENABLE(CUSTOM_ELEMENTS)
182 bool RuntimeEnabledFeatures::isCustomDOMElementsEnabled = false; 182 bool RuntimeEnabledFeatures::isCustomDOMElementsEnabled = false;
183 #endif 183 #endif
184 184
185 #if ENABLE(STYLE_SCOPED) 185 #if ENABLE(STYLE_SCOPED)
186 bool RuntimeEnabledFeatures::isStyleScopedEnabled = false; 186 bool RuntimeEnabledFeatures::isStyleScopedEnabled = false;
187 #endif 187 #endif
188 188
189 #if ENABLE(INPUT_TYPE_DATE)
190 bool RuntimeEnabledFeatures::isInputTypeDateEnabled = true;
191 #endif
192
193 #if ENABLE(INPUT_TYPE_DATETIME_INCOMPLETE) 189 #if ENABLE(INPUT_TYPE_DATETIME_INCOMPLETE)
194 bool RuntimeEnabledFeatures::isInputTypeDateTimeEnabled = false; 190 bool RuntimeEnabledFeatures::isInputTypeDateTimeEnabled = false;
195 #endif 191 #endif
196 192
197 #if ENABLE(INPUT_TYPE_DATETIMELOCAL) 193 #if ENABLE(INPUT_TYPE_DATETIMELOCAL)
198 bool RuntimeEnabledFeatures::isInputTypeDateTimeLocalEnabled = true; 194 bool RuntimeEnabledFeatures::isInputTypeDateTimeLocalEnabled = true;
199 #endif 195 #endif
200 196
201 #if ENABLE(INPUT_TYPE_MONTH) 197 #if ENABLE(INPUT_TYPE_MONTH)
202 bool RuntimeEnabledFeatures::isInputTypeMonthEnabled = true; 198 bool RuntimeEnabledFeatures::isInputTypeMonthEnabled = true;
(...skipping 17 matching lines...) Expand all
220 216
221 bool RuntimeEnabledFeatures::areExperimentalContentSecurityPolicyFeaturesEnabled = false; 217 bool RuntimeEnabledFeatures::areExperimentalContentSecurityPolicyFeaturesEnabled = false;
222 218
223 bool RuntimeEnabledFeatures::areSeamlessIFramesEnabled = false; 219 bool RuntimeEnabledFeatures::areSeamlessIFramesEnabled = false;
224 220
225 #if ENABLE(FONT_LOAD_EVENTS) 221 #if ENABLE(FONT_LOAD_EVENTS)
226 bool RuntimeEnabledFeatures::isFontLoadEventsEnabled = false; 222 bool RuntimeEnabledFeatures::isFontLoadEventsEnabled = false;
227 #endif 223 #endif
228 224
229 } // namespace WebCore 225 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/WebCore/bindings/v8/RuntimeEnabledFeatures.h ('k') | Source/WebCore/css/html.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698