| 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 20 matching lines...) Expand all Loading... |
| 31 #define InspectorDebuggerAgent_h | 31 #define InspectorDebuggerAgent_h |
| 32 | 32 |
| 33 #include "InspectorFrontend.h" | 33 #include "InspectorFrontend.h" |
| 34 #include "bindings/v8/ScriptState.h" | 34 #include "bindings/v8/ScriptState.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/InspectorBaseAgent.h" | 37 #include "core/inspector/InspectorBaseAgent.h" |
| 38 #include "core/inspector/ScriptBreakpoint.h" | 38 #include "core/inspector/ScriptBreakpoint.h" |
| 39 #include "core/inspector/ScriptDebugListener.h" | 39 #include "core/inspector/ScriptDebugListener.h" |
| 40 #include "core/page/ConsoleTypes.h" | 40 #include "core/page/ConsoleTypes.h" |
| 41 #include <wtf/Forward.h> | 41 #include "wtf/Forward.h" |
| 42 #include <wtf/HashMap.h> | 42 #include "wtf/HashMap.h" |
| 43 #include <wtf/PassOwnPtr.h> | 43 #include "wtf/PassRefPtr.h" |
| 44 #include <wtf/PassRefPtr.h> | 44 #include "wtf/Vector.h" |
| 45 #include <wtf/text/StringHash.h> | 45 #include "wtf/text/StringHash.h" |
| 46 #include <wtf/Vector.h> | |
| 47 | 46 |
| 48 namespace WebCore { | 47 namespace WebCore { |
| 49 | 48 |
| 50 class InjectedScriptManager; | 49 class InjectedScriptManager; |
| 51 class InspectorFrontend; | 50 class InspectorFrontend; |
| 52 class InspectorState; | 51 class InspectorState; |
| 53 class InstrumentingAgents; | 52 class InstrumentingAgents; |
| 54 class JSONObject; | 53 class JSONObject; |
| 55 class ScriptArguments; | 54 class ScriptArguments; |
| 56 class ScriptCallStack; | 55 class ScriptCallStack; |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 InspectorFrontend::Debugger::Reason::Enum m_breakReason; | 195 InspectorFrontend::Debugger::Reason::Enum m_breakReason; |
| 197 RefPtr<JSONObject> m_breakAuxData; | 196 RefPtr<JSONObject> m_breakAuxData; |
| 198 bool m_javaScriptPauseScheduled; | 197 bool m_javaScriptPauseScheduled; |
| 199 Listener* m_listener; | 198 Listener* m_listener; |
| 200 }; | 199 }; |
| 201 | 200 |
| 202 } // namespace WebCore | 201 } // namespace WebCore |
| 203 | 202 |
| 204 | 203 |
| 205 #endif // !defined(InspectorDebuggerAgent_h) | 204 #endif // !defined(InspectorDebuggerAgent_h) |
| OLD | NEW |