| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 class Event; | 42 class Event; |
| 43 class EventListener; | 43 class EventListener; |
| 44 class EventTarget; | 44 class EventTarget; |
| 45 class ExecutionContext; | 45 class ExecutionContext; |
| 46 class ExecutionContextTask; | 46 class ExecutionContextTask; |
| 47 class FormData; | 47 class FormData; |
| 48 class HTTPHeaderMap; | 48 class HTTPHeaderMap; |
| 49 class InspectorDebuggerAgent; | 49 class InspectorDebuggerAgent; |
| 50 class KURL; | 50 class KURL; |
| 51 class MutationObserver; | 51 class MutationObserver; |
| 52 class ScriptValue; | |
| 53 class ThreadableLoaderClient; | 52 class ThreadableLoaderClient; |
| 54 class XMLHttpRequest; | 53 class XMLHttpRequest; |
| 55 | 54 |
| 56 class AsyncCallStackTracker final : public NoBaseWillBeGarbageCollected<AsyncCal
lStackTracker> { | 55 class AsyncCallStackTracker final : public NoBaseWillBeGarbageCollected<AsyncCal
lStackTracker> { |
| 57 WTF_MAKE_NONCOPYABLE(AsyncCallStackTracker); | 56 WTF_MAKE_NONCOPYABLE(AsyncCallStackTracker); |
| 58 DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(AsyncCallStackTracker); | 57 DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(AsyncCallStackTracker); |
| 59 public: | 58 public: |
| 60 explicit AsyncCallStackTracker(InspectorDebuggerAgent*); | 59 explicit AsyncCallStackTracker(InspectorDebuggerAgent*); |
| 61 | 60 |
| 62 void didInstallTimer(ExecutionContext*, int timerId, int timeout, bool singl
eShot); | 61 void didInstallTimer(ExecutionContext*, int timerId, int timeout, bool singl
eShot); |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 ExecutionContextData* createContextDataIfNeeded(ExecutionContext*); | 111 ExecutionContextData* createContextDataIfNeeded(ExecutionContext*); |
| 113 | 112 |
| 114 using ExecutionContextDataMap = WillBeHeapHashMap<RawPtrWillBeMember<Executi
onContext>, OwnPtrWillBeMember<ExecutionContextData>>; | 113 using ExecutionContextDataMap = WillBeHeapHashMap<RawPtrWillBeMember<Executi
onContext>, OwnPtrWillBeMember<ExecutionContextData>>; |
| 115 ExecutionContextDataMap m_executionContextDataMap; | 114 ExecutionContextDataMap m_executionContextDataMap; |
| 116 InspectorDebuggerAgent* m_debuggerAgent; | 115 InspectorDebuggerAgent* m_debuggerAgent; |
| 117 }; | 116 }; |
| 118 | 117 |
| 119 } // namespace blink | 118 } // namespace blink |
| 120 | 119 |
| 121 #endif // !defined(AsyncCallStackTracker_h) | 120 #endif // !defined(AsyncCallStackTracker_h) |
| OLD | NEW |