Index: chrome/service/cloud_print/cloud_print_url_fetcher.cc |
diff --git a/chrome/service/cloud_print/cloud_print_url_fetcher.cc b/chrome/service/cloud_print/cloud_print_url_fetcher.cc |
index 95ed8db74a449867e9a8dda2872feb257a4f7cc3..77a37ce35e05181b2db2e70bc0f7f610c97ff2f0 100644 |
--- a/chrome/service/cloud_print/cloud_print_url_fetcher.cc |
+++ b/chrome/service/cloud_print/cloud_print_url_fetcher.cc |
@@ -18,6 +18,35 @@ |
#include "net/url_request/url_fetcher.h" |
#include "net/url_request/url_request_status.h" |
+ |
+CloudPrintURLFetcher::ResponseAction |
+CloudPrintURLFetcher::Delegate::HandleRawResponse( |
+ const net::URLFetcher* source, |
+ const GURL& url, |
+ const net::URLRequestStatus& status, |
+ int response_code, |
+ const net::ResponseCookies& cookies, |
+ const std::string& data) { |
+ return CONTINUE_PROCESSING; |
+} |
+ |
+CloudPrintURLFetcher::ResponseAction |
+CloudPrintURLFetcher::Delegate::HandleRawData( |
+ const net::URLFetcher* source, |
+ const GURL& url, |
+ const std::string& data) { |
+ return CONTINUE_PROCESSING; |
+} |
+ |
+CloudPrintURLFetcher::ResponseAction |
+CloudPrintURLFetcher::Delegate::HandleJSONData( |
+ const net::URLFetcher* source, |
+ const GURL& url, |
+ base::DictionaryValue* json_data, |
+ bool succeeded) { |
+ return CONTINUE_PROCESSING; |
+} |
+ |
CloudPrintURLFetcher::CloudPrintURLFetcher() |
: delegate_(NULL), |
num_retries_(0) { |