| 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 21 matching lines...) Expand all Loading... |
| 32 | 32 |
| 33 #include "InspectorFrontend.h" | 33 #include "InspectorFrontend.h" |
| 34 #include "bindings/v8/ScriptDebugServer.h" | 34 #include "bindings/v8/ScriptDebugServer.h" |
| 35 #include "bindings/v8/ScriptObject.h" | 35 #include "bindings/v8/ScriptObject.h" |
| 36 #include "core/inspector/ContentSearchUtils.h" | 36 #include "core/inspector/ContentSearchUtils.h" |
| 37 #include "core/inspector/InjectedScript.h" | 37 #include "core/inspector/InjectedScript.h" |
| 38 #include "core/inspector/InjectedScriptManager.h" | 38 #include "core/inspector/InjectedScriptManager.h" |
| 39 #include "core/inspector/InspectorPageAgent.h" | 39 #include "core/inspector/InspectorPageAgent.h" |
| 40 #include "core/inspector/InspectorState.h" | 40 #include "core/inspector/InspectorState.h" |
| 41 #include "core/inspector/InstrumentingAgents.h" | 41 #include "core/inspector/InstrumentingAgents.h" |
| 42 #include "core/inspector/ScriptArguments.h" | |
| 43 #include "core/inspector/ScriptCallStack.h" | |
| 44 #include "core/loader/cache/CachedResource.h" | 42 #include "core/loader/cache/CachedResource.h" |
| 45 #include "core/platform/JSONValues.h" | 43 #include "core/platform/JSONValues.h" |
| 46 #include "core/platform/text/RegularExpression.h" | 44 #include "core/platform/text/RegularExpression.h" |
| 47 #include "wtf/MemoryInstrumentationHashMap.h" | 45 #include "wtf/MemoryInstrumentationHashMap.h" |
| 48 #include "wtf/MemoryInstrumentationVector.h" | 46 #include "wtf/MemoryInstrumentationVector.h" |
| 49 #include "wtf/text/WTFString.h" | 47 #include "wtf/text/WTFString.h" |
| 50 | 48 |
| 51 using WebCore::TypeBuilder::Array; | 49 using WebCore::TypeBuilder::Array; |
| 52 using WebCore::TypeBuilder::Debugger::FunctionDetails; | 50 using WebCore::TypeBuilder::Debugger::FunctionDetails; |
| 53 using WebCore::TypeBuilder::Debugger::ScriptId; | 51 using WebCore::TypeBuilder::Debugger::ScriptId; |
| (...skipping 801 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 855 void InspectorDebuggerAgent::reset() | 853 void InspectorDebuggerAgent::reset() |
| 856 { | 854 { |
| 857 m_scripts.clear(); | 855 m_scripts.clear(); |
| 858 m_breakpointIdToDebugServerBreakpointIds.clear(); | 856 m_breakpointIdToDebugServerBreakpointIds.clear(); |
| 859 if (m_frontend) | 857 if (m_frontend) |
| 860 m_frontend->globalObjectCleared(); | 858 m_frontend->globalObjectCleared(); |
| 861 } | 859 } |
| 862 | 860 |
| 863 } // namespace WebCore | 861 } // namespace WebCore |
| 864 | 862 |
| OLD | NEW |