Index: Source/core/inspector/PageDebuggerAgent.h |
diff --git a/Source/core/inspector/PageDebuggerAgent.h b/Source/core/inspector/PageDebuggerAgent.h |
index 88a1ccd4ea0faa28fd163fc1beca0ed1e6a793b2..9ea56f3ed8f9348e89ecce8e2e2d1ef42ecd1342 100644 |
--- a/Source/core/inspector/PageDebuggerAgent.h |
+++ b/Source/core/inspector/PageDebuggerAgent.h |
@@ -38,6 +38,7 @@ |
namespace blink { |
class DocumentLoader; |
+class EditedResourcesContentManager; |
class InspectorOverlay; |
class InspectorPageAgent; |
class Page; |
@@ -51,7 +52,7 @@ class PageDebuggerAgent FINAL |
WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED; |
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(PageDebuggerAgent); |
public: |
- static PassOwnPtrWillBeRawPtr<PageDebuggerAgent> create(PageScriptDebugServer*, InspectorPageAgent*, InjectedScriptManager*, InspectorOverlay*); |
+ static PassOwnPtrWillBeRawPtr<PageDebuggerAgent> create(PageScriptDebugServer*, InspectorPageAgent*, InjectedScriptManager*, EditedResourcesContentManager*, InspectorOverlay*); |
virtual ~PageDebuggerAgent(); |
virtual void trace(Visitor*) OVERRIDE; |
@@ -78,7 +79,7 @@ private: |
virtual InjectedScript injectedScriptForEval(ErrorString*, const int* executionContextId) OVERRIDE; |
virtual void setOverlayMessage(ErrorString*, const String*) OVERRIDE; |
- PageDebuggerAgent(PageScriptDebugServer*, InspectorPageAgent*, InjectedScriptManager*, InspectorOverlay*); |
+ PageDebuggerAgent(PageScriptDebugServer*, InspectorPageAgent*, InjectedScriptManager*, EditedResourcesContentManager*, InspectorOverlay*); |
// FIXME: Oilpan: Move PageScriptDebugServer to heap in follow-up CL. |
PageScriptDebugServer* m_pageScriptDebugServer; |
RawPtrWillBeMember<InspectorPageAgent> m_pageAgent; |