| Index: net/filter/mock_filter_context.cc
|
| diff --git a/net/filter/mock_filter_context.cc b/net/filter/mock_filter_context.cc
|
| index 06905c0e070790be3cc532623f9c980d328cf4c5..8dd340b929b1b4bc62bc952c9817c11de628b54a 100644
|
| --- a/net/filter/mock_filter_context.cc
|
| +++ b/net/filter/mock_filter_context.cc
|
| @@ -13,7 +13,8 @@ MockFilterContext::MockFilterContext()
|
| response_code_(-1) {
|
| }
|
|
|
| -MockFilterContext::~MockFilterContext() {}
|
| +MockFilterContext::~MockFilterContext() {
|
| +}
|
|
|
| bool MockFilterContext::GetMimeType(std::string* mime_type) const {
|
| *mime_type = mime_type_;
|
| @@ -39,14 +40,24 @@ base::Time MockFilterContext::GetRequestTime() const {
|
| return request_time_;
|
| }
|
|
|
| -bool MockFilterContext::IsCachedContent() const { return is_cached_content_; }
|
| +bool MockFilterContext::IsCachedContent() const {
|
| + return is_cached_content_;
|
| +}
|
|
|
| -bool MockFilterContext::IsDownload() const { return is_download_; }
|
| +bool MockFilterContext::IsDownload() const {
|
| + return is_download_;
|
| +}
|
|
|
| -bool MockFilterContext::IsSdchResponse() const { return is_sdch_response_; }
|
| +bool MockFilterContext::IsSdchResponse() const {
|
| + return is_sdch_response_;
|
| +}
|
|
|
| -int64 MockFilterContext::GetByteReadCount() const { return 0; }
|
| +int64 MockFilterContext::GetByteReadCount() const {
|
| + return 0;
|
| +}
|
|
|
| -int MockFilterContext::GetResponseCode() const { return response_code_; }
|
| +int MockFilterContext::GetResponseCode() const {
|
| + return response_code_;
|
| +}
|
|
|
| } // namespace net
|
|
|