| 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-2011 Google Inc. All rights reserved. | 3 * Copyright (C) 2010-2011 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 26 matching lines...) Expand all Loading... |
| 37 #include "bindings/v8/ScriptSourceCode.h" | 37 #include "bindings/v8/ScriptSourceCode.h" |
| 38 #include "core/fetch/Resource.h" | 38 #include "core/fetch/Resource.h" |
| 39 #include "core/inspector/ContentSearchUtils.h" | 39 #include "core/inspector/ContentSearchUtils.h" |
| 40 #include "core/inspector/InjectedScript.h" | 40 #include "core/inspector/InjectedScript.h" |
| 41 #include "core/inspector/InjectedScriptManager.h" | 41 #include "core/inspector/InjectedScriptManager.h" |
| 42 #include "core/inspector/InspectorPageAgent.h" | 42 #include "core/inspector/InspectorPageAgent.h" |
| 43 #include "core/inspector/InspectorState.h" | 43 #include "core/inspector/InspectorState.h" |
| 44 #include "core/inspector/InstrumentingAgents.h" | 44 #include "core/inspector/InstrumentingAgents.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 "core/platform/JSONValues.h" | |
| 48 #include "core/platform/text/RegularExpression.h" | 47 #include "core/platform/text/RegularExpression.h" |
| 48 #include "platform/JSONValues.h" |
| 49 #include "wtf/text/WTFString.h" | 49 #include "wtf/text/WTFString.h" |
| 50 | 50 |
| 51 using WebCore::TypeBuilder::Array; | 51 using WebCore::TypeBuilder::Array; |
| 52 using WebCore::TypeBuilder::Debugger::FunctionDetails; | 52 using WebCore::TypeBuilder::Debugger::FunctionDetails; |
| 53 using WebCore::TypeBuilder::Debugger::ScriptId; | 53 using WebCore::TypeBuilder::Debugger::ScriptId; |
| 54 using WebCore::TypeBuilder::Runtime::RemoteObject; | 54 using WebCore::TypeBuilder::Runtime::RemoteObject; |
| 55 | 55 |
| 56 namespace WebCore { | 56 namespace WebCore { |
| 57 | 57 |
| 58 namespace DebuggerAgentState { | 58 namespace DebuggerAgentState { |
| (...skipping 1014 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1073 void InspectorDebuggerAgent::reset() | 1073 void InspectorDebuggerAgent::reset() |
| 1074 { | 1074 { |
| 1075 m_scripts.clear(); | 1075 m_scripts.clear(); |
| 1076 m_breakpointIdToDebugServerBreakpointIds.clear(); | 1076 m_breakpointIdToDebugServerBreakpointIds.clear(); |
| 1077 if (m_frontend) | 1077 if (m_frontend) |
| 1078 m_frontend->globalObjectCleared(); | 1078 m_frontend->globalObjectCleared(); |
| 1079 } | 1079 } |
| 1080 | 1080 |
| 1081 } // namespace WebCore | 1081 } // namespace WebCore |
| 1082 | 1082 |
| OLD | NEW |