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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 class ConsoleMessage; | 51 class ConsoleMessage; |
52 class Document; | 52 class Document; |
53 class Event; | 53 class Event; |
54 class EventListener; | 54 class EventListener; |
55 class EventTarget; | 55 class EventTarget; |
56 class ExecutionContextTask; | 56 class ExecutionContextTask; |
57 class FormData; | 57 class FormData; |
58 class HTTPHeaderMap; | 58 class HTTPHeaderMap; |
59 class InjectedScriptManager; | 59 class InjectedScriptManager; |
60 class InspectorFrontend; | 60 class InspectorFrontend; |
61 class InstrumentingAgents; | |
62 class JavaScriptCallFrame; | 61 class JavaScriptCallFrame; |
63 class JSONObject; | 62 class JSONObject; |
64 class KURL; | 63 class KURL; |
65 class MutationObserver; | 64 class MutationObserver; |
66 class ScriptArguments; | |
67 class ScriptAsyncCallStack; | 65 class ScriptAsyncCallStack; |
68 class ScriptCallStack; | |
69 class ScriptDebugServer; | 66 class ScriptDebugServer; |
70 class ScriptRegexp; | 67 class ScriptRegexp; |
71 class ScriptSourceCode; | 68 class ScriptSourceCode; |
72 class ScriptValue; | 69 class ScriptValue; |
73 class ThreadableLoaderClient; | 70 class ThreadableLoaderClient; |
74 class XMLHttpRequest; | 71 class XMLHttpRequest; |
75 | 72 |
76 typedef String ErrorString; | 73 typedef String ErrorString; |
77 | 74 |
78 class InspectorDebuggerAgent : public InspectorBaseAgent<InspectorDebuggerAgent>
, public ScriptDebugListener, public InspectorBackendDispatcher::DebuggerCommand
Handler { | 75 class InspectorDebuggerAgent : public InspectorBaseAgent<InspectorDebuggerAgent>
, public ScriptDebugListener, public InspectorBackendDispatcher::DebuggerCommand
Handler { |
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
279 bool m_skipContentScripts; | 276 bool m_skipContentScripts; |
280 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp; | 277 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp; |
281 OwnPtrWillBeMember<AsyncCallStackTracker> m_asyncCallStackTracker; | 278 OwnPtrWillBeMember<AsyncCallStackTracker> m_asyncCallStackTracker; |
282 OwnPtrWillBeMember<PromiseTracker> m_promiseTracker; | 279 OwnPtrWillBeMember<PromiseTracker> m_promiseTracker; |
283 }; | 280 }; |
284 | 281 |
285 } // namespace blink | 282 } // namespace blink |
286 | 283 |
287 | 284 |
288 #endif // !defined(InspectorDebuggerAgent_h) | 285 #endif // !defined(InspectorDebuggerAgent_h) |
OLD | NEW |