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

Unified Diff: net/base/bzip2_filter.cc

Issue 40138: Use FilterContext to allow filters to access URLRequestJob data... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 10 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/base/bzip2_filter.cc
===================================================================
--- net/base/bzip2_filter.cc (revision 11030)
+++ net/base/bzip2_filter.cc (working copy)
@@ -5,8 +5,9 @@
#include "base/logging.h"
#include "net/base/bzip2_filter.h"
-BZip2Filter::BZip2Filter()
- : decoding_status_(DECODING_UNINITIALIZED),
+BZip2Filter::BZip2Filter(const FilterContext& filter_context)
+ : Filter(filter_context),
+ decoding_status_(DECODING_UNINITIALIZED),
bzip2_data_stream_(NULL) {
}

Powered by Google App Engine
This is Rietveld 408576698