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

Unified Diff: net/http/http_transaction_factory.h

Issue 10736066: Adding histograms showing fraction of page load times (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 5 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
Index: net/http/http_transaction_factory.h
===================================================================
--- net/http/http_transaction_factory.h (revision 147972)
+++ net/http/http_transaction_factory.h (working copy)
@@ -13,8 +13,8 @@
class HttpCache;
class HttpNetworkSession;
class HttpTransaction;
+class HttpTransactionDelegate;
-
// An interface to a class that can create HttpTransaction objects.
class NET_EXPORT HttpTransactionFactory {
public:
@@ -22,7 +22,8 @@
// Creates a HttpTransaction object. On success, saves the new
// transaction to |*trans| and returns OK.
- virtual int CreateTransaction(scoped_ptr<HttpTransaction>* trans) = 0;
+ virtual int CreateTransaction(scoped_ptr<HttpTransaction>* trans,
+ HttpTransactionDelegate* delegate) = 0;
// Returns the associated cache if any (may be NULL).
virtual HttpCache* GetCache() = 0;

Powered by Google App Engine
This is Rietveld 408576698