| Index: net/filter/sdch_filter.cc
|
| diff --git a/net/filter/sdch_filter.cc b/net/filter/sdch_filter.cc
|
| index 57492ea1316e0eee3f7a871ba46416f3f02fb4ac..c5384a4ef040abe18f50933b01f490b0ca5e4e89 100644
|
| --- a/net/filter/sdch_filter.cc
|
| +++ b/net/filter/sdch_filter.cc
|
| @@ -338,7 +338,7 @@ Filter::FilterStatus SdchFilter::InitializeDictionary() {
|
| else
|
| next_stream_data_ = NULL;
|
|
|
| - DCHECK(!dictionary_);
|
| + DCHECK(!dictionary_.get());
|
| dictionary_hash_is_plausible_ = true; // Assume plausible, but check.
|
|
|
| if ('\0' == dictionary_hash_[kServerIdLength - 1]) {
|
| @@ -350,7 +350,7 @@ Filter::FilterStatus SdchFilter::InitializeDictionary() {
|
| dictionary_hash_is_plausible_ = false;
|
| }
|
|
|
| - if (!dictionary_) {
|
| + if (!dictionary_.get()) {
|
| DCHECK(dictionary_hash_.size() == kServerIdLength);
|
| // Since dictionary was not found, check to see if hash was even plausible.
|
| for (size_t i = 0; i < kServerIdLength - 1; ++i) {
|
|
|