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

Side by Side Diff: Source/core/page/RuntimeEnabledFeatures.cpp

Issue 14467003: Remove ENABLE_DIALOG_ELEMENT (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
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 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 #endif 162 #endif
163 163
164 bool RuntimeEnabledFeatures::isStyleScopedEnabled = false; 164 bool RuntimeEnabledFeatures::isStyleScopedEnabled = false;
165 165
166 #if ENABLE(INPUT_TYPE_DATETIME_INCOMPLETE) 166 #if ENABLE(INPUT_TYPE_DATETIME_INCOMPLETE)
167 bool RuntimeEnabledFeatures::isInputTypeDateTimeEnabled = false; 167 bool RuntimeEnabledFeatures::isInputTypeDateTimeEnabled = false;
168 #endif 168 #endif
169 169
170 bool RuntimeEnabledFeatures::isInputTypeWeekEnabled = true; 170 bool RuntimeEnabledFeatures::isInputTypeWeekEnabled = true;
171 171
172 #if ENABLE(DIALOG_ELEMENT)
173 bool RuntimeEnabledFeatures::isDialogElementEnabled = false; 172 bool RuntimeEnabledFeatures::isDialogElementEnabled = false;
174 #endif
175 173
176 bool RuntimeEnabledFeatures::isLazyLayoutEnabled = false; 174 bool RuntimeEnabledFeatures::isLazyLayoutEnabled = false;
177 175
178 bool RuntimeEnabledFeatures::isRequestAutocompleteEnabled = false; 176 bool RuntimeEnabledFeatures::isRequestAutocompleteEnabled = false;
179 177
180 bool RuntimeEnabledFeatures::areExperimentalContentSecurityPolicyFeaturesEnabled = false; 178 bool RuntimeEnabledFeatures::areExperimentalContentSecurityPolicyFeaturesEnabled = false;
181 179
182 bool RuntimeEnabledFeatures::areSeamlessIFramesEnabled = false; 180 bool RuntimeEnabledFeatures::areSeamlessIFramesEnabled = false;
183 181
184 bool RuntimeEnabledFeatures::isFontLoadEventsEnabled = false; 182 bool RuntimeEnabledFeatures::isFontLoadEventsEnabled = false;
185 183
186 bool RuntimeEnabledFeatures::isWebPInAcceptHeaderEnabled = false; 184 bool RuntimeEnabledFeatures::isWebPInAcceptHeaderEnabled = false;
187 185
188 bool RuntimeEnabledFeatures::isIMEAPIEnabled = false; 186 bool RuntimeEnabledFeatures::isIMEAPIEnabled = false;
189 187
190 } // namespace WebCore 188 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698