| Index: third_party/WebKit/Source/core/inspector/InspectorResourceAgent.h
|
| diff --git a/third_party/WebKit/Source/core/inspector/InspectorResourceAgent.h b/third_party/WebKit/Source/core/inspector/InspectorResourceAgent.h
|
| index 92933aa56fecd2859d4753ae3e83e0a8fe33c989..8ab0f89a169c939a8e752d6a7382f3ca60e31af3 100644
|
| --- a/third_party/WebKit/Source/core/inspector/InspectorResourceAgent.h
|
| +++ b/third_party/WebKit/Source/core/inspector/InspectorResourceAgent.h
|
| @@ -131,7 +131,7 @@ public:
|
| void didReceiveWebSocketFrameError(unsigned long identifier, const String&);
|
|
|
| // Called from frontend
|
| - void enable(ErrorString*) override;
|
| + void enable(ErrorString*, const Maybe<int>& totalBufferSize, const Maybe<int>& resourceBufferSize) override;
|
| void disable(ErrorString*) override;
|
| void setUserAgentOverride(ErrorString*, const String& userAgent) override;
|
| void setExtraHTTPHeaders(ErrorString*, PassOwnPtr<protocol::Network::Headers>) override;
|
| @@ -154,7 +154,7 @@ public:
|
| private:
|
| explicit InspectorResourceAgent(InspectedFrames*);
|
|
|
| - void enable();
|
| + void enable(int totalBufferSize, int resourceBufferSize);
|
| void willSendRequestInternal(LocalFrame*, unsigned long identifier, DocumentLoader*, const ResourceRequest&, const ResourceResponse& redirectResponse, const FetchInitiatorInfo&);
|
| void delayedRemoveReplayXHR(XMLHttpRequest*);
|
| void removeFinishedReplayXHRFired(Timer<InspectorResourceAgent>*);
|
|
|