Index: chrome/browser/feedback/feedback_util.cc |
diff --git a/chrome/browser/feedback/feedback_util.cc b/chrome/browser/feedback/feedback_util.cc |
index 697afb89e126ee0096c890a655f19d18cf3e807e..01b8fa75ee48f289d6d27507cec30d82203c6ac3 100644 |
--- a/chrome/browser/feedback/feedback_util.cc |
+++ b/chrome/browser/feedback/feedback_util.cc |
@@ -25,6 +25,7 @@ |
#include "chrome/common/chrome_version_info.h" |
#include "content/public/browser/navigation_controller.h" |
#include "content/public/browser/web_contents.h" |
+#include "content/public/common/content_url_request_user_data.h" |
#include "content/public/common/url_fetcher.h" |
#include "content/public/common/url_fetcher_delegate.h" |
#include "googleurl/src/gurl.h" |
@@ -201,6 +202,9 @@ void FeedbackUtil::SendFeedback(Profile* profile, |
post_url, content::URLFetcher::POST, |
new FeedbackUtil::PostCleanup(profile, post_body, previous_delay)); |
fetcher->SetRequestContext(profile->GetRequestContext()); |
+ // TODO(jochen): Do cookie audit. |
+ fetcher->SetContentURLRequestUserData( |
+ new content::ContentURLRequestUserData()); |
fetcher->SetLoadFlags(net::LOAD_DO_NOT_SAVE_COOKIES); |
fetcher->SetUploadData(std::string(kProtBufMimeType), *post_body); |
fetcher->Start(); |