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

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
« no previous file with comments | « net/http/http_transaction_delegate.h ('k') | net/http/http_transaction_unittest.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_transaction_factory.h
===================================================================
--- net/http/http_transaction_factory.h (revision 148459)
+++ net/http/http_transaction_factory.h (working copy)
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -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;
« no previous file with comments | « net/http/http_transaction_delegate.h ('k') | net/http/http_transaction_unittest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698