| 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 21 matching lines...) Expand all Loading... |
| 32 #define PageRuntimeAgent_h | 32 #define PageRuntimeAgent_h |
| 33 | 33 |
| 34 #include "bindings/core/v8/ScriptState.h" | 34 #include "bindings/core/v8/ScriptState.h" |
| 35 #include "core/inspector/InspectorRuntimeAgent.h" | 35 #include "core/inspector/InspectorRuntimeAgent.h" |
| 36 #include "wtf/PassOwnPtr.h" | 36 #include "wtf/PassOwnPtr.h" |
| 37 | 37 |
| 38 namespace blink { | 38 namespace blink { |
| 39 | 39 |
| 40 class InspectorClient; | 40 class InspectorClient; |
| 41 class InspectorPageAgent; | 41 class InspectorPageAgent; |
| 42 class Page; |
| 42 class SecurityOrigin; | 43 class SecurityOrigin; |
| 43 | 44 |
| 44 class PageRuntimeAgent final : public InspectorRuntimeAgent { | 45 class PageRuntimeAgent final : public InspectorRuntimeAgent { |
| 45 public: | 46 public: |
| 46 static PassOwnPtrWillBeRawPtr<PageRuntimeAgent> create(InjectedScriptManager
* injectedScriptManager, InspectorClient* client, ScriptDebugServer* scriptDebug
Server, InspectorPageAgent* pageAgent) | 47 static PassOwnPtrWillBeRawPtr<PageRuntimeAgent> create(InjectedScriptManager
* injectedScriptManager, InspectorClient* client, ScriptDebugServer* scriptDebug
Server, Page* page, InspectorPageAgent* pageAgent) |
| 47 { | 48 { |
| 48 return adoptPtrWillBeNoop(new PageRuntimeAgent(injectedScriptManager, cl
ient, scriptDebugServer, pageAgent)); | 49 return adoptPtrWillBeNoop(new PageRuntimeAgent(injectedScriptManager, cl
ient, scriptDebugServer, page, pageAgent)); |
| 49 } | 50 } |
| 50 virtual ~PageRuntimeAgent(); | 51 virtual ~PageRuntimeAgent(); |
| 51 virtual void trace(Visitor*) override; | 52 virtual void trace(Visitor*) override; |
| 52 virtual void init() override; | 53 virtual void init() override; |
| 53 virtual void enable(ErrorString*) override; | 54 virtual void enable(ErrorString*) override; |
| 54 virtual void run(ErrorString*) override; | 55 virtual void run(ErrorString*) override; |
| 55 | 56 |
| 56 void didClearDocumentOfWindowObject(LocalFrame*); | 57 void didClearDocumentOfWindowObject(LocalFrame*); |
| 57 void didCreateScriptContext(LocalFrame*, ScriptState*, SecurityOrigin*, int
worldId); | 58 void didCreateScriptContext(LocalFrame*, ScriptState*, SecurityOrigin*, int
worldId); |
| 58 void willReleaseScriptContext(LocalFrame*, ScriptState*); | 59 void willReleaseScriptContext(LocalFrame*, ScriptState*); |
| 59 | 60 |
| 60 private: | 61 private: |
| 61 PageRuntimeAgent(InjectedScriptManager*, InspectorClient*, ScriptDebugServer
*, InspectorPageAgent*); | 62 PageRuntimeAgent(InjectedScriptManager*, InspectorClient*, ScriptDebugServer
*, Page*, InspectorPageAgent*); |
| 62 | 63 |
| 63 virtual InjectedScript injectedScriptForEval(ErrorString*, const int* execut
ionContextId) override; | 64 virtual InjectedScript injectedScriptForEval(ErrorString*, const int* execut
ionContextId) override; |
| 64 virtual void muteConsole() override; | 65 virtual void muteConsole() override; |
| 65 virtual void unmuteConsole() override; | 66 virtual void unmuteConsole() override; |
| 66 void reportExecutionContextCreation(); | 67 void reportExecutionContextCreation(); |
| 67 | 68 |
| 68 InspectorClient* m_client; | 69 InspectorClient* m_client; |
| 70 RawPtrWillBeMember<Page> m_inspectedPage; |
| 69 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent; | 71 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent; |
| 70 bool m_mainWorldContextCreated; | 72 bool m_mainWorldContextCreated; |
| 71 int m_debuggerId; | 73 int m_debuggerId; |
| 72 }; | 74 }; |
| 73 | 75 |
| 74 } // namespace blink | 76 } // namespace blink |
| 75 | 77 |
| 76 | 78 |
| 77 #endif // !defined(InspectorPagerAgent_h) | 79 #endif // !defined(InspectorPagerAgent_h) |
| OLD | NEW |