Index: chrome/service/cloud_print/cloud_print_url_fetcher.h |
=================================================================== |
--- chrome/service/cloud_print/cloud_print_url_fetcher.h (revision 74874) |
+++ chrome/service/cloud_print/cloud_print_url_fetcher.h (working copy) |
@@ -81,13 +81,15 @@ |
void StartGetRequest(const GURL& url, |
Delegate* delegate, |
const std::string& auth_token, |
- int max_retries); |
+ int max_retries, |
+ const std::string& additional_headers); |
void StartPostRequest(const GURL& url, |
Delegate* delegate, |
const std::string& auth_token, |
int max_retries, |
const std::string& post_data_mime_type, |
- const std::string& post_data); |
+ const std::string& post_data, |
+ const std::string& additional_headers); |
// URLFetcher::Delegate implementation. |
virtual void OnURLFetchComplete(const URLFetcher* source, const GURL& url, |
@@ -109,7 +111,8 @@ |
const std::string& auth_token, |
int max_retries, |
const std::string& post_data_mime_type, |
- const std::string& post_data); |
+ const std::string& post_data, |
+ const std::string& additional_headers); |
scoped_ptr<URLFetcher> request_; |
Delegate* delegate_; |