| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2010 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2010 Google Inc. All rights reserved. | 3 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 #include "InspectorFrontend.h" | 33 #include "InspectorFrontend.h" |
| 34 #include "bindings/v8/ScriptProfiler.h" | 34 #include "bindings/v8/ScriptProfiler.h" |
| 35 #include "core/inspector/ConsoleAPITypes.h" | 35 #include "core/inspector/ConsoleAPITypes.h" |
| 36 #include "core/inspector/InjectedScript.h" | 36 #include "core/inspector/InjectedScript.h" |
| 37 #include "core/inspector/InjectedScriptHost.h" | 37 #include "core/inspector/InjectedScriptHost.h" |
| 38 #include "core/inspector/InspectorConsoleAgent.h" | 38 #include "core/inspector/InspectorConsoleAgent.h" |
| 39 #include "core/inspector/InspectorState.h" | 39 #include "core/inspector/InspectorState.h" |
| 40 #include "core/inspector/InstrumentingAgents.h" | 40 #include "core/inspector/InstrumentingAgents.h" |
| 41 #include "core/inspector/ScriptCallStack.h" | 41 #include "core/inspector/ScriptCallStack.h" |
| 42 #include "core/inspector/ScriptProfile.h" | 42 #include "core/inspector/ScriptProfile.h" |
| 43 #include "core/page/ConsoleTypes.h" | 43 #include "core/frame/ConsoleTypes.h" |
| 44 #include "wtf/CurrentTime.h" | 44 #include "wtf/CurrentTime.h" |
| 45 #include "wtf/text/StringConcatenate.h" | 45 #include "wtf/text/StringConcatenate.h" |
| 46 | 46 |
| 47 namespace WebCore { | 47 namespace WebCore { |
| 48 | 48 |
| 49 namespace ProfilerAgentState { | 49 namespace ProfilerAgentState { |
| 50 static const char samplingInterval[] = "samplingInterval"; | 50 static const char samplingInterval[] = "samplingInterval"; |
| 51 static const char userInitiatedProfiling[] = "userInitiatedProfiling"; | 51 static const char userInitiatedProfiling[] = "userInitiatedProfiling"; |
| 52 static const char profilerEnabled[] = "profilerEnabled"; | 52 static const char profilerEnabled[] = "profilerEnabled"; |
| 53 static const char profileHeadersRequested[] = "profileHeadersRequested"; | 53 static const char profileHeadersRequested[] = "profileHeadersRequested"; |
| (...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 idleStarted(); | 313 idleStarted(); |
| 314 } | 314 } |
| 315 | 315 |
| 316 void InspectorProfilerAgent::didLeaveNestedRunLoop() | 316 void InspectorProfilerAgent::didLeaveNestedRunLoop() |
| 317 { | 317 { |
| 318 idleFinished(); | 318 idleFinished(); |
| 319 } | 319 } |
| 320 | 320 |
| 321 } // namespace WebCore | 321 } // namespace WebCore |
| 322 | 322 |
| OLD | NEW |