Chromium Code Reviews| 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; |
| }; |
| //------------------------------------------------------------------------------ |