| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 void didClearDocumentOfWindowObject(LocalFrame*); | 59 void didClearDocumentOfWindowObject(LocalFrame*); |
| 60 void didCommitLoadForLocalFrame(LocalFrame*) override; | 60 void didCommitLoadForLocalFrame(LocalFrame*) override; |
| 61 | 61 |
| 62 protected: | 62 protected: |
| 63 void enable() override; | 63 void enable() override; |
| 64 void disable() override; | 64 void disable() override; |
| 65 | 65 |
| 66 private: | 66 private: |
| 67 void startListeningScriptDebugServer() override; | 67 void startListeningScriptDebugServer() override; |
| 68 void stopListeningScriptDebugServer() override; | 68 void stopListeningScriptDebugServer() override; |
| 69 PageScriptDebugServer& scriptDebugServer() override; | 69 ScriptDebugServer& scriptDebugServer() override; |
| 70 void muteConsole() override; | 70 void muteConsole() override; |
| 71 void unmuteConsole() override; | 71 void unmuteConsole() override; |
| 72 | 72 |
| 73 // InspectorOverlay::Listener implementation. | 73 // InspectorOverlay::Listener implementation. |
| 74 void overlayResumed() override; | 74 void overlayResumed() override; |
| 75 void overlaySteppedOver() override; | 75 void overlaySteppedOver() override; |
| 76 | 76 |
| 77 InjectedScript injectedScriptForEval(ErrorString*, const int* executionConte
xtId) override; | 77 InjectedScript injectedScriptForEval(ErrorString*, const int* executionConte
xtId) override; |
| 78 | 78 |
| 79 PageDebuggerAgent(PageScriptDebugServer*, InspectorPageAgent*, InjectedScrip
tManager*, InspectorOverlay*, int debuggerId); | 79 PageDebuggerAgent(PageScriptDebugServer*, InspectorPageAgent*, InjectedScrip
tManager*, InspectorOverlay*, int debuggerId); |
| 80 RawPtrWillBeMember<PageScriptDebugServer> m_pageScriptDebugServer; | 80 RawPtrWillBeMember<PageScriptDebugServer> m_pageScriptDebugServer; |
| 81 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent; | 81 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent; |
| 82 RawPtrWillBeMember<InspectorOverlay> m_overlay; | 82 RawPtrWillBeMember<InspectorOverlay> m_overlay; |
| 83 int m_debuggerId; | 83 int m_debuggerId; |
| 84 HashMap<String, String> m_compiledScriptURLs; | 84 HashMap<String, String> m_compiledScriptURLs; |
| 85 }; | 85 }; |
| 86 | 86 |
| 87 } // namespace blink | 87 } // namespace blink |
| 88 | 88 |
| 89 | 89 |
| 90 #endif // !defined(PageDebuggerAgent_h) | 90 #endif // !defined(PageDebuggerAgent_h) |
| OLD | NEW |