summaryrefslogtreecommitdiffstats
path: root/WebCore/inspector/InspectorState.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/inspector/InspectorState.cpp')
-rw-r--r--WebCore/inspector/InspectorState.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/WebCore/inspector/InspectorState.cpp b/WebCore/inspector/InspectorState.cpp
index e6d3044..df939ba 100644
--- a/WebCore/inspector/InspectorState.cpp
+++ b/WebCore/inspector/InspectorState.cpp
@@ -39,9 +39,7 @@ namespace WebCore {
InspectorState::InspectorState(InspectorClient* client)
: m_client(client)
{
- registerBoolean(monitoringXHR, false, "monitoringXHR", "xhrMonitor");
- registerBoolean(resourceTrackingEnabled, false, "resourceTrackingEnabled", (const char*)0);
- registerBoolean(resourceTrackingAlwaysEnabled, false, (const char*)0, "resourceTrackingEnabled");
+ registerBoolean(monitoringXHR, false, "monitoringXHREnabled", "xhrMonitor");
registerBoolean(timelineProfilerEnabled, false, "timelineProfilerEnabled", (const char*)0);
registerBoolean(searchingForNode, false, "searchingForNodeEnabled", (const char*)0);
registerBoolean(profilerAlwaysEnabled, false, (const char*)0, "profilerEnabled");
@@ -50,6 +48,7 @@ InspectorState::InspectorState(InspectorClient* client)
registerLong(inspectorAttachedHeight, InspectorController::defaultAttachedHeight, (const char*)0, "inspectorAttachedHeight");
registerLong(pauseOnExceptionsState, 0, "pauseOnExceptionsState", (const char*)0);
registerBoolean(consoleMessagesEnabled, false, "consoleMessagesEnabled", (const char*)0);
+ registerBoolean(userInitiatedProfiling, false, "userInitiatedProfiling", (const char*)0);
}
void InspectorState::restoreFromInspectorCookie(const String& json)