diff options
Diffstat (limited to 'chrome/browser/net')
-rw-r--r-- | chrome/browser/net/sdch_dictionary_fetcher.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/net/sdch_dictionary_fetcher.cc b/chrome/browser/net/sdch_dictionary_fetcher.cc index 4707c95..90f317a 100644 --- a/chrome/browser/net/sdch_dictionary_fetcher.cc +++ b/chrome/browser/net/sdch_dictionary_fetcher.cc @@ -77,8 +77,9 @@ void SdchDictionaryFetcher::OnURLFetchComplete( const net::ResponseCookies& cookies, const std::string& data) { if ((200 == response_code) && - (status.status() == net::URLRequestStatus::SUCCESS)) + (status.status() == net::URLRequestStatus::SUCCESS)) { net::SdchManager::Global()->AddSdchDictionary(data, url); + } current_fetch_.reset(NULL); ScheduleDelayedRun(); } |