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

Unified Diff: net/filter/filter.h

Issue 423813002: Sdch view for net-internals (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adopt logging for URLReqest-based dict fetcher + cosmetics Created 6 years, 3 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/filter/filter.h
diff --git a/net/filter/filter.h b/net/filter/filter.h
index 5e6b867cf8b96c9abcce28f6cb4f6a2bd2d9d2a7..83606f41f4d0e8452b4a0ddb9dfe4177cbaa51ab 100644
--- a/net/filter/filter.h
+++ b/net/filter/filter.h
@@ -38,13 +38,15 @@
#include "base/memory/scoped_ptr.h"
#include "base/time/time.h"
#include "net/base/net_export.h"
+#include "net/base/sdch_manager.h"
Randy Smith (Not in Mondays) 2014/09/18 20:55:51 I don't see this used anywhere in this file; remov
baranovich 2014/09/19 12:42:44 My bad
baranovich 2014/09/30 13:16:52 Done.
class GURL;
namespace net {
-class URLRequestContext;
+class BoundNetLog;
class IOBuffer;
+class URLRequestContext;
//------------------------------------------------------------------------------
// Define an interface class that allows access to contextual information
@@ -105,6 +107,9 @@ class NET_EXPORT_PRIVATE FilterContext {
// The following method forces the context to emit a specific set of
// statistics as selected by the argument.
virtual void RecordPacketStats(StatisticSelector statistic) const = 0;
+
+ // The BoundNetLog of the associated request.
+ virtual const BoundNetLog& GetNetLog() const = 0;
};
//------------------------------------------------------------------------------

Powered by Google App Engine
This is Rietveld 408576698