Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(813)

Unified Diff: net/url_request/url_request.h

Issue 126303: Add a "LoadLog*" parameter to transactions, hostresolver, clientsocketpool. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: sync again Created 11 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/tools/fetch/fetch_client.cc ('k') | net/url_request/url_request.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/url_request/url_request.h
===================================================================
--- net/url_request/url_request.h (revision 23124)
+++ net/url_request/url_request.h (working copy)
@@ -15,6 +15,7 @@
#include "base/ref_counted.h"
#include "base/scoped_ptr.h"
#include "googleurl/src/gurl.h"
+#include "net/base/load_log.h"
#include "net/base/load_states.h"
#include "net/http/http_response_info.h"
#include "net/url_request/url_request_status.h"
@@ -485,6 +486,8 @@
URLRequestContext* context();
void set_context(URLRequestContext* context);
+ net::LoadLog* load_log() { return load_log_; }
+
// Returns the expected content size if available
int64 GetExpectedContentSize() const;
@@ -541,9 +544,14 @@
// Origin).
static std::string StripPostSpecificHeaders(const std::string& headers);
- // Contextual information used for this request (can be NULL).
+ // Contextual information used for this request (can be NULL). This contains
+ // most of the dependencies which are shared between requests (disk cache,
+ // cookie store, socket poool, etc.)
scoped_refptr<URLRequestContext> context_;
+ // Tracks the time spent in various load states throughout this request.
+ scoped_refptr<net::LoadLog> load_log_;
+
scoped_refptr<URLRequestJob> job_;
scoped_refptr<net::UploadData> upload_;
GURL url_;
« no previous file with comments | « net/tools/fetch/fetch_client.cc ('k') | net/url_request/url_request.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698