void InspectorFrontend::showPanel(int panel) { const char* showFunctionName; switch (panel) { case InspectorController::ConsolePanel: showFunctionName = "showConsole"; break; case InspectorController::DatabasesPanel: showFunctionName = "showDatabasesPanel"; break; case InspectorController::ElementsPanel: showFunctionName = "showElementsPanel"; break; case InspectorController::ProfilesPanel: showFunctionName = "showProfilesPanel"; break; case InspectorController::ResourcesPanel: showFunctionName = "showResourcesPanel"; break; case InspectorController::ScriptsPanel: showFunctionName = "showScriptsPanel"; break; default: ASSERT_NOT_REACHED(); showFunctionName = 0; } if (showFunctionName) callSimpleFunction(showFunctionName); }
void InspectorFrontend::profilerWasDisabled() { callSimpleFunction("profilerWasDisabled"); }
void InspectorFrontend::debuggerWasDisabled() { callSimpleFunction("debuggerWasDisabled"); }
void InspectorFrontend::attachDebuggerWhenShown() { callSimpleFunction("attachDebuggerWhenShown"); }
void InspectorFrontend::resourceTrackingWasDisabled() { callSimpleFunction("resourceTrackingWasDisabled"); }
void InspectorFrontend::reset() { callSimpleFunction("reset"); }
void InspectorFrontend::populateInterface() { callSimpleFunction("populateInterface"); }
void InspectorFrontend::resetProfilesPanel() { callSimpleFunction("resetProfilesPanel"); }
void InspectorFrontend::didCommitLoad() { callSimpleFunction("didCommitLoad"); }
void InspectorFrontend::contextMenuCleared() { callSimpleFunction("contextMenuCleared"); }
void InspectorFrontend::timelineProfilerWasStopped() { callSimpleFunction("timelineProfilerWasStopped"); }
void InspectorFrontend::monitoringXHRWasDisabled() { callSimpleFunction("monitoringXHRWasDisabled"); }
void InspectorFrontend::searchingForNodeWasDisabled() { callSimpleFunction("searchingForNodeWasDisabled"); }
void InspectorFrontend::bringToFront() { callSimpleFunction("bringToFront"); }
void InspectorFrontend::pausedScript() { callSimpleFunction("pausedScript"); }
void InspectorFrontend::resumedScript() { callSimpleFunction("resumedScript"); }
void InspectorFrontend::clearConsoleMessages() { callSimpleFunction("clearConsoleMessages"); }