| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 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 19 matching lines...) Expand all Loading... |
| 30 | 30 |
| 31 #ifndef PageDebuggerAgent_h | 31 #ifndef PageDebuggerAgent_h |
| 32 #define PageDebuggerAgent_h | 32 #define PageDebuggerAgent_h |
| 33 | 33 |
| 34 #include "bindings/core/v8/PageScriptDebugServer.h" | 34 #include "bindings/core/v8/PageScriptDebugServer.h" |
| 35 #include "core/inspector/InspectorDebuggerAgent.h" | 35 #include "core/inspector/InspectorDebuggerAgent.h" |
| 36 #include "core/inspector/InspectorOverlay.h" | 36 #include "core/inspector/InspectorOverlay.h" |
| 37 | 37 |
| 38 namespace blink { | 38 namespace blink { |
| 39 | 39 |
| 40 class LocalFrame; | 40 class DocumentLoader; |
| 41 class InspectorPageAgent; |
| 41 class PageScriptDebugServer; | 42 class PageScriptDebugServer; |
| 42 | 43 |
| 43 class PageDebuggerAgent final | 44 class PageDebuggerAgent final |
| 44 : public InspectorDebuggerAgent | 45 : public InspectorDebuggerAgent |
| 45 , public InspectorOverlay::Listener { | 46 , public InspectorOverlay::Listener { |
| 46 WTF_MAKE_NONCOPYABLE(PageDebuggerAgent); | 47 WTF_MAKE_NONCOPYABLE(PageDebuggerAgent); |
| 47 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED(PageDebuggerAgent); | 48 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED(PageDebuggerAgent); |
| 48 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(PageDebuggerAgent); | 49 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(PageDebuggerAgent); |
| 49 public: | 50 public: |
| 50 static PassOwnPtrWillBeRawPtr<PageDebuggerAgent> create(LocalFrame* inspecte
dFrame, PageScriptDebugServer*, InjectedScriptManager*, InspectorOverlay*, int d
ebuggerId); | 51 static PassOwnPtrWillBeRawPtr<PageDebuggerAgent> create(PageScriptDebugServe
r*, InspectorPageAgent*, InjectedScriptManager*, InspectorOverlay*, int debugger
Id); |
| 51 ~PageDebuggerAgent() override; | 52 ~PageDebuggerAgent() override; |
| 52 DECLARE_VIRTUAL_TRACE(); | 53 DECLARE_VIRTUAL_TRACE(); |
| 53 | 54 |
| 54 void didStartProvisionalLoad(LocalFrame*); | 55 void didStartProvisionalLoad(LocalFrame*); |
| 55 void didClearDocumentOfWindowObject(LocalFrame*); | 56 void didClearDocumentOfWindowObject(LocalFrame*); |
| 56 void didCommitLoadForLocalFrame(LocalFrame*) override; | 57 void didCommitLoadForLocalFrame(LocalFrame*) override; |
| 57 | 58 |
| 58 protected: | 59 protected: |
| 59 void enable() override; | 60 void enable() override; |
| 60 void disable() override; | 61 void disable() override; |
| 61 | 62 |
| 62 private: | 63 private: |
| 63 void startListeningScriptDebugServer() override; | 64 void startListeningScriptDebugServer() override; |
| 64 void stopListeningScriptDebugServer() override; | 65 void stopListeningScriptDebugServer() override; |
| 65 PageScriptDebugServer& scriptDebugServer() override; | 66 PageScriptDebugServer& scriptDebugServer() override; |
| 66 void muteConsole() override; | 67 void muteConsole() override; |
| 67 void unmuteConsole() override; | 68 void unmuteConsole() override; |
| 68 | 69 |
| 69 // InspectorOverlay::Listener implementation. | 70 // InspectorOverlay::Listener implementation. |
| 70 void overlayResumed() override; | 71 void overlayResumed() override; |
| 71 void overlaySteppedOver() override; | 72 void overlaySteppedOver() override; |
| 72 | 73 |
| 73 InjectedScript injectedScriptForEval(ErrorString*, const int* executionConte
xtId) override; | 74 InjectedScript injectedScriptForEval(ErrorString*, const int* executionConte
xtId) override; |
| 74 | 75 |
| 75 PageDebuggerAgent(LocalFrame* inspectedFrame, PageScriptDebugServer*, Inject
edScriptManager*, InspectorOverlay*, int debuggerId); | 76 PageDebuggerAgent(PageScriptDebugServer*, InspectorPageAgent*, InjectedScrip
tManager*, InspectorOverlay*, int debuggerId); |
| 76 RawPtrWillBeMember<LocalFrame> m_inspectedFrame; | |
| 77 RawPtrWillBeMember<PageScriptDebugServer> m_pageScriptDebugServer; | 77 RawPtrWillBeMember<PageScriptDebugServer> m_pageScriptDebugServer; |
| 78 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent; |
| 78 RawPtrWillBeMember<InspectorOverlay> m_overlay; | 79 RawPtrWillBeMember<InspectorOverlay> m_overlay; |
| 79 int m_debuggerId; | 80 int m_debuggerId; |
| 80 }; | 81 }; |
| 81 | 82 |
| 82 } // namespace blink | 83 } // namespace blink |
| 83 | 84 |
| 84 | 85 |
| 85 #endif // !defined(PageDebuggerAgent_h) | 86 #endif // !defined(PageDebuggerAgent_h) |
| OLD | NEW |