| Index: content/browser/debugger/devtools_netlog_observer.h
|
| ===================================================================
|
| --- content/browser/debugger/devtools_netlog_observer.h (revision 111374)
|
| +++ content/browser/debugger/devtools_netlog_observer.h (working copy)
|
| @@ -11,12 +11,14 @@
|
| #include "net/base/net_log.h"
|
| #include "webkit/glue/resource_loader_bridge.h"
|
|
|
| +namespace content {
|
| +struct ResourceResponse;
|
| +}
|
| +
|
| namespace net {
|
| class URLRequest;
|
| } // namespace net
|
|
|
| -struct ResourceResponse;
|
| -
|
| // DevToolsNetLogObserver watches the NetLog event stream and collects the
|
| // stuff that may be of interest to DevTools. Currently, this only includes
|
| // actual HTTP/SPDY headers sent and received over the network.
|
| @@ -59,7 +61,8 @@
|
| // Must be called on the IO thread. May return NULL if no observers
|
| // are active.
|
| static DevToolsNetLogObserver* GetInstance();
|
| - static void PopulateResponseInfo(net::URLRequest*, ResourceResponse*);
|
| + static void PopulateResponseInfo(net::URLRequest*,
|
| + content::ResourceResponse*);
|
| static int GetAndResetEncodedDataLength(net::URLRequest* request);
|
|
|
| private:
|
|
|