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 4fc7e5486addd28b001558c31e56bc0f416c3861..3a8990a4a2c3b50d63ba30718d74c8056490df17 100644 |
--- a/chrome/service/cloud_print/cloud_print_url_fetcher.cc |
+++ b/chrome/service/cloud_print/cloud_print_url_fetcher.cc |
@@ -21,7 +21,7 @@ CloudPrintURLFetcher::CloudPrintURLFetcher() |
num_retries_(0) { |
} |
-bool CloudPrintURLFetcher::IsSameRequest(const content::URLFetcher* source) { |
+bool CloudPrintURLFetcher::IsSameRequest(const net::URLFetcher* source) { |
return (request_.get() == source); |
} |
@@ -56,7 +56,7 @@ void CloudPrintURLFetcher::StartPostRequest( |
} |
void CloudPrintURLFetcher::OnURLFetchComplete( |
- const content::URLFetcher* source) { |
+ const net::URLFetcher* source) { |
VLOG(1) << "CP_PROXY: OnURLFetchComplete, url: " << source->GetURL() |
<< ", response code: " << source->GetResponseCode(); |
// Make sure we stay alive through the body of this function. |