Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9717)

Unified Diff: chrome/service/cloud_print/cloud_print_url_fetcher.h

Issue 6523040: Added support to the Windows cloud print proxy to print XPS documents directl... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Code review changes Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_;
« no previous file with comments | « chrome/service/cloud_print/cloud_print_proxy_backend.cc ('k') | chrome/service/cloud_print/cloud_print_url_fetcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698