| 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) 2013 Google Inc. All rights reserved. | 3 * Copyright (C) 2013 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 11 matching lines...) Expand all Loading... |
| 22 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | 22 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 23 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | 23 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 24 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 24 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 28 */ | 28 */ |
| 29 | 29 |
| 30 #include "config.h" | 30 #include "config.h" |
| 31 #include "core/inspector/InspectorDebuggerAgent.h" | 31 #include "core/inspector/InspectorDebuggerAgent.h" |
| 32 #include "core/inspector/JavaScriptCallFrame.h" | |
| 33 | 32 |
| 34 #include "bindings/v8/ScriptDebugServer.h" | 33 #include "bindings/core/v8/ScriptDebugServer.h" |
| 35 #include "bindings/v8/ScriptRegexp.h" | 34 #include "bindings/core/v8/ScriptRegexp.h" |
| 36 #include "bindings/v8/ScriptSourceCode.h" | 35 #include "bindings/core/v8/ScriptSourceCode.h" |
| 37 #include "bindings/v8/ScriptValue.h" | 36 #include "bindings/core/v8/ScriptValue.h" |
| 38 #include "core/dom/Document.h" | 37 #include "core/dom/Document.h" |
| 39 #include "core/fetch/Resource.h" | 38 #include "core/fetch/Resource.h" |
| 40 #include "core/inspector/ContentSearchUtils.h" | 39 #include "core/inspector/ContentSearchUtils.h" |
| 41 #include "core/inspector/InjectedScriptManager.h" | 40 #include "core/inspector/InjectedScriptManager.h" |
| 42 #include "core/inspector/InspectorPageAgent.h" | 41 #include "core/inspector/InspectorPageAgent.h" |
| 43 #include "core/inspector/InspectorState.h" | 42 #include "core/inspector/InspectorState.h" |
| 44 #include "core/inspector/InstrumentingAgents.h" | 43 #include "core/inspector/InstrumentingAgents.h" |
| 44 #include "core/inspector/JavaScriptCallFrame.h" |
| 45 #include "core/inspector/ScriptArguments.h" | 45 #include "core/inspector/ScriptArguments.h" |
| 46 #include "core/inspector/ScriptCallStack.h" | 46 #include "core/inspector/ScriptCallStack.h" |
| 47 #include "platform/JSONValues.h" | 47 #include "platform/JSONValues.h" |
| 48 #include "wtf/text/WTFString.h" | 48 #include "wtf/text/WTFString.h" |
| 49 | 49 |
| 50 using WebCore::TypeBuilder::Array; | 50 using WebCore::TypeBuilder::Array; |
| 51 using WebCore::TypeBuilder::Debugger::BreakpointId; | 51 using WebCore::TypeBuilder::Debugger::BreakpointId; |
| 52 using WebCore::TypeBuilder::Debugger::CallFrame; | 52 using WebCore::TypeBuilder::Debugger::CallFrame; |
| 53 using WebCore::TypeBuilder::Debugger::ExceptionDetails; | 53 using WebCore::TypeBuilder::Debugger::ExceptionDetails; |
| 54 using WebCore::TypeBuilder::Debugger::FunctionDetails; | 54 using WebCore::TypeBuilder::Debugger::FunctionDetails; |
| (...skipping 1244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1299 { | 1299 { |
| 1300 m_scripts.clear(); | 1300 m_scripts.clear(); |
| 1301 m_breakpointIdToDebugServerBreakpointIds.clear(); | 1301 m_breakpointIdToDebugServerBreakpointIds.clear(); |
| 1302 m_asyncCallStackTracker.clear(); | 1302 m_asyncCallStackTracker.clear(); |
| 1303 if (m_frontend) | 1303 if (m_frontend) |
| 1304 m_frontend->globalObjectCleared(); | 1304 m_frontend->globalObjectCleared(); |
| 1305 } | 1305 } |
| 1306 | 1306 |
| 1307 } // namespace WebCore | 1307 } // namespace WebCore |
| 1308 | 1308 |
| OLD | NEW |