| Index: net/base/sdch_filter.cc
|
| diff --git a/net/base/sdch_filter.cc b/net/base/sdch_filter.cc
|
| index cc9a1d6f4fc4b5bf7f1459fd8b583dcf4073da14..2be75dbfc39c8b2b49da3890a4f8f483d71295bd 100644
|
| --- a/net/base/sdch_filter.cc
|
| +++ b/net/base/sdch_filter.cc
|
| @@ -1,7 +1,9 @@
|
| -// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2011 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.
|
|
|
| +#include "net/base/sdch_filter.h"
|
| +
|
| #include <limits.h>
|
| #include <ctype.h>
|
| #include <algorithm>
|
| @@ -9,11 +11,12 @@
|
| #include "base/file_util.h"
|
| #include "base/logging.h"
|
| #include "base/metrics/histogram.h"
|
| -#include "net/base/sdch_filter.h"
|
| #include "net/base/sdch_manager.h"
|
|
|
| #include "sdch/open-vcdiff/src/google/vcdecoder.h"
|
|
|
| +namespace net {
|
| +
|
| SdchFilter::SdchFilter(const FilterContext& filter_context)
|
| : Filter(filter_context),
|
| decoding_status_(DECODING_UNINITIALIZED),
|
| @@ -383,3 +386,5 @@ int SdchFilter::OutputBufferExcess(char* const dest_buffer,
|
| }
|
| return amount;
|
| }
|
| +
|
| +} // namespace net
|
|
|