| Index: google_apis/gcm/engine/checkin_request.cc
|
| diff --git a/google_apis/gcm/engine/checkin_request.cc b/google_apis/gcm/engine/checkin_request.cc
|
| index a5558471772a4043bbc0a5753d3d685678e0a6a1..2bafdea5e4ba7e94e7ebc2cf78a228c9aada8500 100644
|
| --- a/google_apis/gcm/engine/checkin_request.cc
|
| +++ b/google_apis/gcm/engine/checkin_request.cc
|
| @@ -9,6 +9,7 @@
|
| #include "base/metrics/histogram.h"
|
| #include "google_apis/gcm/monitoring/gcm_stats_recorder.h"
|
| #include "google_apis/gcm/protocol/checkin.pb.h"
|
| +#include "net/base/load_flags.h"
|
| #include "net/http/http_status_code.h"
|
| #include "net/url_request/url_fetcher.h"
|
| #include "net/url_request/url_request_status.h"
|
| @@ -134,6 +135,8 @@ void CheckinRequest::Start() {
|
| net::URLFetcher::Create(checkin_url_, net::URLFetcher::POST, this));
|
| url_fetcher_->SetRequestContext(request_context_getter_);
|
| url_fetcher_->SetUploadData(kRequestContentType, upload_data);
|
| + url_fetcher_->SetLoadFlags(net::LOAD_DO_NOT_SEND_COOKIES |
|
| + net::LOAD_DO_NOT_SAVE_COOKIES);
|
| recorder_->RecordCheckinInitiated(request_info_.android_id);
|
| request_start_time_ = base::TimeTicks::Now();
|
| url_fetcher_->Start();
|
|
|