diff options
author | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-10 20:38:25 +0000 |
---|---|---|
committer | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-10 20:38:25 +0000 |
commit | 852711914fec9474ae81d698e4eae526425f0dc0 (patch) | |
tree | d3e12df866157ecc760d6106881bc2d866a0e212 /chrome/browser/net | |
parent | dba8e3d3060c00facb4ea76ba5fbf2dcfcf1134c (diff) | |
download | chromium_src-852711914fec9474ae81d698e4eae526425f0dc0.zip chromium_src-852711914fec9474ae81d698e4eae526425f0dc0.tar.gz chromium_src-852711914fec9474ae81d698e4eae526425f0dc0.tar.bz2 |
Style cleanups. No functional change.
BUG=none
TEST=none
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@84842 0039d316-1c4b-4281-b951-d872f2087c98
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(); } |