| Index: chrome/browser/autofill/autofill_download.cc
|
| ===================================================================
|
| --- chrome/browser/autofill/autofill_download.cc (revision 124927)
|
| +++ chrome/browser/autofill/autofill_download.cc (working copy)
|
| @@ -20,6 +20,7 @@
|
| #include "chrome/common/pref_names.h"
|
| #include "content/public/common/url_fetcher.h"
|
| #include "googleurl/src/gurl.h"
|
| +#include "net/base/load_flags.h"
|
| #include "net/http/http_response_headers.h"
|
| #include "third_party/libjingle/source/talk/xmllite/xmlparser.h"
|
|
|
| @@ -170,6 +171,7 @@
|
| fetcher->SetAutomaticallyRetryOn5xx(false);
|
| fetcher->SetRequestContext(request_context);
|
| fetcher->SetUploadData("text/plain", form_xml);
|
| + fetcher->SetLoadFlags(net::LOAD_DO_NOT_SAVE_COOKIES);
|
| fetcher->Start();
|
| return true;
|
| }
|
|
|