| Index: chrome/browser/sync/glue/http_bridge.cc
|
| diff --git a/chrome/browser/sync/glue/http_bridge.cc b/chrome/browser/sync/glue/http_bridge.cc
|
| index 7e39b473373fc1f15cc828ca10a3ecbf7a2355ab..2383a523c0a5faa92f060e9933b0727e181f87e1 100644
|
| --- a/chrome/browser/sync/glue/http_bridge.cc
|
| +++ b/chrome/browser/sync/glue/http_bridge.cc
|
| @@ -9,6 +9,7 @@
|
| #include "base/string_number_conversions.h"
|
| #include "content/public/browser/browser_thread.h"
|
| #include "content/public/common/content_client.h"
|
| +#include "content/public/common/content_url_request_user_data.h"
|
| #include "content/public/common/url_fetcher.h"
|
| #include "net/base/cookie_monster.h"
|
| #include "net/base/host_resolver.h"
|
| @@ -222,6 +223,9 @@ void HttpBridge::MakeAsynchronousPost() {
|
| fetch_state_.url_poster = content::URLFetcher::Create(
|
| url_for_request_, content::URLFetcher::POST, this);
|
| fetch_state_.url_poster->SetRequestContext(context_getter_for_request_);
|
| + // TODO(jochen): Do cookie audit.
|
| + fetch_state_.url_poster->SetContentURLRequestUserData(
|
| + new content::ContentURLRequestUserData());
|
| fetch_state_.url_poster->SetUploadData(content_type_, request_content_);
|
| fetch_state_.url_poster->SetExtraRequestHeaders(extra_headers_);
|
| fetch_state_.url_poster->SetLoadFlags(net::LOAD_DO_NOT_SEND_COOKIES);
|
|
|