Index: chrome/browser/net/sdch_dictionary_fetcher.cc |
diff --git a/chrome/browser/net/sdch_dictionary_fetcher.cc b/chrome/browser/net/sdch_dictionary_fetcher.cc |
index 405f5f2ab6df79ae5b78fd65efea4bf08f12a83d..1880c99c2921ccce01e6ad0e1e753f238937fddd 100644 |
--- a/chrome/browser/net/sdch_dictionary_fetcher.cc |
+++ b/chrome/browser/net/sdch_dictionary_fetcher.cc |
@@ -8,6 +8,7 @@ |
#include "base/compiler_specific.h" |
#include "base/message_loop.h" |
#include "chrome/browser/profiles/profile.h" |
+#include "content/public/common/content_url_request_user_data.h" |
#include "content/public/common/url_fetcher.h" |
#include "net/url_request/url_request_context_getter.h" |
#include "net/url_request/url_request_status.h" |
@@ -69,6 +70,9 @@ void SdchDictionaryFetcher::StartFetching() { |
fetch_queue_.front(), content::URLFetcher::GET, this)); |
fetch_queue_.pop(); |
current_fetch_->SetRequestContext(context_.get()); |
+ // TODO(jochen): Do cookie audit. |
+ current_fetch_->SetContentURLRequestUserData( |
+ new content::ContentURLRequestUserData()); |
current_fetch_->Start(); |
} |