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

Unified Diff: chrome/service/cloud_print/cloud_print_proxy_backend.cc

Issue 8375039: Create a content::UrlFetcher interface that lives in content/public/common and convert users to i... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: review comments Created 9 years, 2 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_proxy_backend.cc
===================================================================
--- chrome/service/cloud_print/cloud_print_proxy_backend.cc (revision 107061)
+++ chrome/service/cloud_print/cloud_print_proxy_backend.cc (working copy)
@@ -82,7 +82,7 @@
// CloudPrintURLFetcher::Delegate implementation.
virtual CloudPrintURLFetcher::ResponseAction HandleJSONData(
- const URLFetcher* source,
+ const content::URLFetcher* source,
const GURL& url,
DictionaryValue* json_data,
bool succeeded);
@@ -118,43 +118,43 @@
// Prototype for a response handler.
typedef CloudPrintURLFetcher::ResponseAction
(CloudPrintProxyBackend::Core::*ResponseHandler)(
- const URLFetcher* source,
+ const content::URLFetcher* source,
const GURL& url,
DictionaryValue* json_data,
bool succeeded);
// Begin response handlers
CloudPrintURLFetcher::ResponseAction HandlePrinterListResponse(
- const URLFetcher* source,
+ const content::URLFetcher* source,
const GURL& url,
DictionaryValue* json_data,
bool succeeded);
CloudPrintURLFetcher::ResponseAction HandleRegisterPrinterResponse(
- const URLFetcher* source,
+ const content::URLFetcher* source,
const GURL& url,
DictionaryValue* json_data,
bool succeeded);
CloudPrintURLFetcher::ResponseAction HandleRegisterFailedStatusResponse(
- const URLFetcher* source,
+ const content::URLFetcher* source,
const GURL& url,
DictionaryValue* json_data,
bool succeeded);
CloudPrintURLFetcher::ResponseAction HandlePrintSystemUnavailableResponse(
- const URLFetcher* source,
+ const content::URLFetcher* source,
const GURL& url,
DictionaryValue* json_data,
bool succeeded);
CloudPrintURLFetcher::ResponseAction HandleEnumPrintersFailedResponse(
- const URLFetcher* source,
+ const content::URLFetcher* source,
const GURL& url,
DictionaryValue* json_data,
bool succeeded);
CloudPrintURLFetcher::ResponseAction HandleGetAuthCodeResponse(
- const URLFetcher* source,
+ const content::URLFetcher* source,
const GURL& url,
DictionaryValue* json_data,
bool succeeded);
@@ -766,7 +766,7 @@
// CloudPrintURLFetcher::Delegate implementation.
CloudPrintURLFetcher::ResponseAction
CloudPrintProxyBackend::Core::HandleJSONData(
- const URLFetcher* source,
+ const content::URLFetcher* source,
const GURL& url,
DictionaryValue* json_data,
bool succeeded) {
@@ -806,7 +806,7 @@
CloudPrintURLFetcher::ResponseAction
CloudPrintProxyBackend::Core::HandleGetAuthCodeResponse(
- const URLFetcher* source,
+ const content::URLFetcher* source,
const GURL& url,
DictionaryValue* json_data,
bool succeeded) {
@@ -835,7 +835,7 @@
CloudPrintURLFetcher::ResponseAction
CloudPrintProxyBackend::Core::HandlePrinterListResponse(
- const URLFetcher* source,
+ const content::URLFetcher* source,
const GURL& url,
DictionaryValue* json_data,
bool succeeded) {
@@ -954,7 +954,7 @@
CloudPrintURLFetcher::ResponseAction
CloudPrintProxyBackend::Core::HandleRegisterPrinterResponse(
- const URLFetcher* source,
+ const content::URLFetcher* source,
const GURL& url,
DictionaryValue* json_data,
bool succeeded) {
@@ -978,7 +978,7 @@
CloudPrintURLFetcher::ResponseAction
CloudPrintProxyBackend::Core::HandleRegisterFailedStatusResponse(
- const URLFetcher* source,
+ const content::URLFetcher* source,
const GURL& url,
DictionaryValue* json_data,
bool succeeded) {
@@ -993,7 +993,7 @@
CloudPrintURLFetcher::ResponseAction
CloudPrintProxyBackend::Core::HandlePrintSystemUnavailableResponse(
- const URLFetcher* source,
+ const content::URLFetcher* source,
const GURL& url,
DictionaryValue* json_data,
bool succeeded) {
@@ -1008,7 +1008,7 @@
CloudPrintURLFetcher::ResponseAction
CloudPrintProxyBackend::Core::HandleEnumPrintersFailedResponse(
- const URLFetcher* source,
+ const content::URLFetcher* source,
const GURL& url,
DictionaryValue* json_data,
bool succeeded) {
« no previous file with comments | « chrome/common/net/gaia/gaia_oauth_client_unittest.cc ('k') | chrome/service/cloud_print/cloud_print_url_fetcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698