diff options
Diffstat (limited to 'chrome/browser/google_apis/base_operations.cc')
-rw-r--r-- | chrome/browser/google_apis/base_operations.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/google_apis/base_operations.cc b/chrome/browser/google_apis/base_operations.cc index c6f425c..6692a8a 100644 --- a/chrome/browser/google_apis/base_operations.cc +++ b/chrome/browser/google_apis/base_operations.cc @@ -186,7 +186,7 @@ void UrlFetchOperationBase::Start(const std::string& access_token, request_type == URLFetcher::PATCH) { // Set empty upload content-type and upload content, so that // the request will have no "Content-type: " header and no content. - url_fetcher_->SetUploadData("", ""); + url_fetcher_->SetUploadData(std::string(), std::string()); } } |