| Index: Source/core/inspector/InspectorProfilerAgent.cpp
|
| diff --git a/Source/core/inspector/InspectorProfilerAgent.cpp b/Source/core/inspector/InspectorProfilerAgent.cpp
|
| index 6db81c8bb8df8928c8f7aba7bc97ea47ab137a5f..25575ade3f59c693513bde8d3a906f26ae860d58 100644
|
| --- a/Source/core/inspector/InspectorProfilerAgent.cpp
|
| +++ b/Source/core/inspector/InspectorProfilerAgent.cpp
|
| @@ -53,7 +53,6 @@ static const char profilerEnabled[] = "profilerEnabled";
|
| static const char profileHeadersRequested[] = "profileHeadersRequested";
|
| }
|
|
|
| -static const char* const userInitiatedProfileName = "org.webkit.profiles.user-initiated";
|
| static const char* const CPUProfileType = "CPU";
|
|
|
| PassOwnPtr<InspectorProfilerAgent> InspectorProfilerAgent::create(InstrumentingAgents* instrumentingAgents, InspectorConsoleAgent* consoleAgent, InspectorCompositeState* inspectorState, InjectedScriptManager* injectedScriptManager)
|
| @@ -143,7 +142,7 @@ String InspectorProfilerAgent::getCurrentUserInitiatedProfileName(bool increment
|
| if (incrementProfileNumber)
|
| m_currentUserInitiatedProfileNumber = m_nextUserInitiatedProfileNumber++;
|
|
|
| - return String(userInitiatedProfileName) + "." + String::number(m_currentUserInitiatedProfileNumber);
|
| + return "Profile " + String::number(m_currentUserInitiatedProfileNumber);
|
| }
|
|
|
| void InspectorProfilerAgent::getProfileHeaders(ErrorString*, RefPtr<TypeBuilder::Array<TypeBuilder::Profiler::ProfileHeader> >& headers)
|
|
|