@@ -94,9 +94,6 @@ class DeprecatedGlobalSettings {
94
94
static bool fetchAPIKeepAliveEnabled () { return shared ().m_fetchAPIKeepAliveEnabled ; }
95
95
static void setFetchAPIKeepAliveEnabled (bool isEnabled) { shared ().m_fetchAPIKeepAliveEnabled = isEnabled; }
96
96
97
- static void setItpDebugModeEnabled (bool isEnabled) { shared ().m_itpDebugMode = isEnabled; }
98
- static bool itpDebugModeEnabled () { return shared ().m_itpDebugMode ; }
99
-
100
97
static void setRestrictedHTTPResponseAccess (bool isEnabled) { shared ().m_isRestrictedHTTPResponseAccess = isEnabled; }
101
98
static bool restrictedHTTPResponseAccess () { return shared ().m_isRestrictedHTTPResponseAccess ; }
102
99
@@ -139,9 +136,6 @@ class DeprecatedGlobalSettings {
139
136
static void setLineHeightUnitsEnabled (bool isEnabled) { shared ().m_lineHeightUnitsEnabled = isEnabled; }
140
137
static bool lineHeightUnitsEnabled () { return shared ().m_lineHeightUnitsEnabled ; }
141
138
142
- static bool privateClickMeasurementDebugModeEnabled () { return shared ().m_privateClickMeasurementDebugModeEnabled ; }
143
- static void setPrivateClickMeasurementDebugModeEnabled (bool isEnabled) { shared ().m_privateClickMeasurementDebugModeEnabled = isEnabled; }
144
-
145
139
#if ENABLE(ACCESSIBILITY_ISOLATED_TREE)
146
140
static void setIsAccessibilityIsolatedTreeEnabled (bool isEnabled) { shared ().m_accessibilityIsolatedTree = isEnabled; }
147
141
static bool isAccessibilityIsolatedTreeEnabled () { return shared ().m_accessibilityIsolatedTree ; }
@@ -225,7 +219,6 @@ class DeprecatedGlobalSettings {
225
219
226
220
bool m_isCustomPasteboardDataEnabled { false };
227
221
bool m_fetchAPIKeepAliveEnabled { false };
228
- bool m_itpDebugMode { false };
229
222
bool m_isRestrictedHTTPResponseAccess { true };
230
223
bool m_isServerTimingEnabled { false };
231
224
bool m_attrStyleEnabled { false };
@@ -250,8 +243,6 @@ class DeprecatedGlobalSettings {
250
243
251
244
bool m_lineHeightUnitsEnabled { true };
252
245
253
- bool m_privateClickMeasurementDebugModeEnabled { false };
254
-
255
246
#if ENABLE(ACCESSIBILITY_ISOLATED_TREE)
256
247
bool m_accessibilityIsolatedTree { false };
257
248
#endif
0 commit comments