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

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

Issue 14083009: Remove ENABLE_CUSTOM_ELEMENTS compile time flag (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removing flag from features.gypi 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
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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 #if ENABLE(ENCRYPTED_MEDIA) 157 #if ENABLE(ENCRYPTED_MEDIA)
158 bool RuntimeEnabledFeatures::isEncryptedMediaEnabled = false; 158 bool RuntimeEnabledFeatures::isEncryptedMediaEnabled = false;
159 #endif 159 #endif
160 160
161 bool RuntimeEnabledFeatures::isShadowDOMEnabled = false; 161 bool RuntimeEnabledFeatures::isShadowDOMEnabled = false;
162 162
163 bool RuntimeEnabledFeatures::isExperimentalShadowDOMEnabled = false; 163 bool RuntimeEnabledFeatures::isExperimentalShadowDOMEnabled = false;
164 164
165 bool RuntimeEnabledFeatures::isAuthorShadowDOMForAnyElementEnabled = false; 165 bool RuntimeEnabledFeatures::isAuthorShadowDOMForAnyElementEnabled = false;
166 166
167 #if ENABLE(CUSTOM_ELEMENTS)
168 bool RuntimeEnabledFeatures::isCustomDOMElementsEnabled = false; 167 bool RuntimeEnabledFeatures::isCustomDOMElementsEnabled = false;
169 #endif
170 168
171 bool RuntimeEnabledFeatures::isStyleScopedEnabled = false; 169 bool RuntimeEnabledFeatures::isStyleScopedEnabled = false;
172 170
173 #if ENABLE(INPUT_TYPE_DATETIME_INCOMPLETE) 171 #if ENABLE(INPUT_TYPE_DATETIME_INCOMPLETE)
174 bool RuntimeEnabledFeatures::isInputTypeDateTimeEnabled = false; 172 bool RuntimeEnabledFeatures::isInputTypeDateTimeEnabled = false;
175 #endif 173 #endif
176 174
177 bool RuntimeEnabledFeatures::isInputTypeWeekEnabled = true; 175 bool RuntimeEnabledFeatures::isInputTypeWeekEnabled = true;
178 176
179 #if ENABLE(DIALOG_ELEMENT) 177 #if ENABLE(DIALOG_ELEMENT)
180 bool RuntimeEnabledFeatures::isDialogElementEnabled = false; 178 bool RuntimeEnabledFeatures::isDialogElementEnabled = false;
181 #endif 179 #endif
182 180
183 bool RuntimeEnabledFeatures::isRequestAutocompleteEnabled = false; 181 bool RuntimeEnabledFeatures::isRequestAutocompleteEnabled = false;
184 182
185 bool RuntimeEnabledFeatures::areExperimentalContentSecurityPolicyFeaturesEnabled = false; 183 bool RuntimeEnabledFeatures::areExperimentalContentSecurityPolicyFeaturesEnabled = false;
186 184
187 bool RuntimeEnabledFeatures::areSeamlessIFramesEnabled = false; 185 bool RuntimeEnabledFeatures::areSeamlessIFramesEnabled = false;
188 186
189 #if ENABLE(FONT_LOAD_EVENTS) 187 #if ENABLE(FONT_LOAD_EVENTS)
190 bool RuntimeEnabledFeatures::isFontLoadEventsEnabled = false; 188 bool RuntimeEnabledFeatures::isFontLoadEventsEnabled = false;
191 #endif 189 #endif
192 190
193 bool RuntimeEnabledFeatures::isWebPInAcceptHeaderEnabled = false; 191 bool RuntimeEnabledFeatures::isWebPInAcceptHeaderEnabled = false;
194 192
195 } // namespace WebCore 193 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698