HomeSort by relevance Sort by last modified time
    Searched refs:CloudPrintURLFetcher (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/chrome/service/cloud_print/
cloud_print_url_fetcher.cc 26 void ReportRequestTime(CloudPrintURLFetcher::RequestType type,
28 if (type == CloudPrintURLFetcher::REQUEST_REGISTER) {
30 } else if (type == CloudPrintURLFetcher::REQUEST_UPDATE_PRINTER) {
32 } else if (type == CloudPrintURLFetcher::REQUEST_DATA) {
39 void ReportRetriesCount(CloudPrintURLFetcher::RequestType type,
41 if (type == CloudPrintURLFetcher::REQUEST_REGISTER) {
43 } else if (type == CloudPrintURLFetcher::REQUEST_UPDATE_PRINTER) {
46 } else if (type == CloudPrintURLFetcher::REQUEST_DATA) {
54 void ReportDownloadSize(CloudPrintURLFetcher::RequestType type, size_t size) {
55 if (type == CloudPrintURLFetcher::REQUEST_REGISTER)
    [all...]
cloud_print_wipeout.cc 41 request_ = CloudPrintURLFetcher::Create();
42 request_->StartGetRequest(CloudPrintURLFetcher::REQUEST_UNREGISTER,
46 CloudPrintURLFetcher::ResponseAction CloudPrintWipeout::HandleJSONData(
53 return CloudPrintURLFetcher::STOP_PROCESSING;
60 CloudPrintURLFetcher::ResponseAction CloudPrintWipeout::OnRequestAuthError() {
63 return CloudPrintURLFetcher::STOP_PROCESSING;
cloud_print_url_fetcher.h 30 class CloudPrintURLFetcher;
33 virtual CloudPrintURLFetcher* CreateCloudPrintURLFetcher() = 0;
42 class CloudPrintURLFetcher
43 : public base::RefCountedThreadSafe<CloudPrintURLFetcher>,
111 // CloudPrintURLFetcher will request auth info before sending any request.
118 static CloudPrintURLFetcher* Create();
140 CloudPrintURLFetcher();
141 friend class base::RefCountedThreadSafe<CloudPrintURLFetcher>;
142 virtual ~CloudPrintURLFetcher();
171 typedef CloudPrintURLFetcher::Delegate CloudPrintURLFetcherDelegate
    [all...]
cloud_print_url_fetcher_unittest.cc 61 class TestCloudPrintURLFetcher : public CloudPrintURLFetcher {
95 // CloudPrintURLFetcher::Delegate
96 virtual CloudPrintURLFetcher::ResponseAction HandleRawResponse(
104 virtual CloudPrintURLFetcher::ResponseAction OnRequestAuthError() OVERRIDE {
106 return CloudPrintURLFetcher::STOP_PROCESSING;
148 // CloudPrintURLFetcher::Delegate
149 virtual CloudPrintURLFetcher::ResponseAction HandleRawResponse(
157 virtual CloudPrintURLFetcher::ResponseAction HandleRawData(
162 virtual CloudPrintURLFetcher::ResponseAction HandleJSONData(
185 // CloudPrintURLFetcher::Delegat
    [all...]
cloud_print_wipeout.h 33 // CloudPrintURLFetcher::Delegate implementation.
34 virtual CloudPrintURLFetcher::ResponseAction HandleJSONData(
40 virtual CloudPrintURLFetcher::ResponseAction OnRequestAuthError() OVERRIDE;
50 // The CloudPrintURLFetcher instance for the current request.
51 scoped_refptr<CloudPrintURLFetcher> request_;
job_status_updater.cc 77 request_ = CloudPrintURLFetcher::Create();
79 CloudPrintURLFetcher::REQUEST_UPDATE_JOB,
96 // CloudPrintURLFetcher::Delegate implementation.
97 CloudPrintURLFetcher::ResponseAction JobStatusUpdater::HandleJSONData(
106 return CloudPrintURLFetcher::STOP_PROCESSING;
109 CloudPrintURLFetcher::ResponseAction JobStatusUpdater::OnRequestAuthError() {
116 return CloudPrintURLFetcher::STOP_PROCESSING;
cloud_print_connector.h 61 typedef CloudPrintURLFetcher::ResponseAction
93 // CloudPrintURLFetcher::Delegate implementation.
94 virtual CloudPrintURLFetcher::ResponseAction HandleRawData(
98 virtual CloudPrintURLFetcher::ResponseAction HandleJSONData(
103 virtual CloudPrintURLFetcher::ResponseAction OnRequestAuthError() OVERRIDE;
107 CloudPrintURLFetcher::ResponseAction HandlePrinterListResponse(
113 CloudPrintURLFetcher::ResponseAction HandlePrinterListResponseSettingsUpdate(
119 CloudPrintURLFetcher::ResponseAction HandlePrinterDeleteResponse(
125 CloudPrintURLFetcher::ResponseAction HandleRegisterPrinterResponse(
136 void StartPostRequest(CloudPrintURLFetcher::RequestType type
    [all...]
printer_job_handler.h 117 // CloudPrintURLFetcher::Delegate implementation.
118 virtual CloudPrintURLFetcher::ResponseAction HandleRawResponse(
125 virtual CloudPrintURLFetcher::ResponseAction HandleRawData(
129 virtual CloudPrintURLFetcher::ResponseAction HandleJSONData(
135 virtual CloudPrintURLFetcher::ResponseAction OnRequestAuthError() OVERRIDE;
168 typedef CloudPrintURLFetcher::ResponseAction
174 typedef CloudPrintURLFetcher::ResponseAction
182 CloudPrintURLFetcher::ResponseAction HandlePrinterUpdateResponse(
188 CloudPrintURLFetcher::ResponseAction HandleJobMetadataResponse(
194 CloudPrintURLFetcher::ResponseAction HandlePrintTicketResponse
    [all...]
cloud_print_auth.cc 64 request_ = CloudPrintURLFetcher::Create();
65 request_->StartGetRequest(CloudPrintURLFetcher::REQUEST_AUTH_CODE,
160 CloudPrintURLFetcher::ResponseAction CloudPrintAuth::HandleJSONData(
171 return CloudPrintURLFetcher::STOP_PROCESSING;
181 return CloudPrintURLFetcher::STOP_PROCESSING;
197 return CloudPrintURLFetcher::STOP_PROCESSING;
200 CloudPrintURLFetcher::ResponseAction CloudPrintAuth::OnRequestAuthError() {
209 return CloudPrintURLFetcher::STOP_PROCESSING;
job_status_updater.h 47 // CloudPrintURLFetcher::Delegate implementation.
48 virtual CloudPrintURLFetcher::ResponseAction HandleJSONData(
53 virtual CloudPrintURLFetcher::ResponseAction OnRequestAuthError() OVERRIDE;
69 scoped_refptr<CloudPrintURLFetcher> request_;
cloud_print_connector.cc 167 // CloudPrintURLFetcher::Delegate implementation.
168 CloudPrintURLFetcher::ResponseAction CloudPrintConnector::HandleRawData(
176 return CloudPrintURLFetcher::STOP_PROCESSING;
177 return CloudPrintURLFetcher::CONTINUE_PROCESSING;
180 CloudPrintURLFetcher::ResponseAction CloudPrintConnector::HandleJSONData(
186 return CloudPrintURLFetcher::STOP_PROCESSING;
192 CloudPrintURLFetcher::ResponseAction CloudPrintConnector::OnRequestAuthError() {
194 return CloudPrintURLFetcher::STOP_PROCESSING;
203 CloudPrintURLFetcher::ResponseAction
211 return CloudPrintURLFetcher::RETRY_REQUEST
    [all...]
cloud_print_auth.h 67 // CloudPrintURLFetcher::Delegate implementation.
68 virtual CloudPrintURLFetcher::ResponseAction HandleJSONData(
73 virtual CloudPrintURLFetcher::ResponseAction OnRequestAuthError() OVERRIDE;
84 // The CloudPrintURLFetcher instance for the current request.
85 scoped_refptr<CloudPrintURLFetcher> request_;
printer_job_handler.cc 127 // CloudPrintURLFetcher::Delegate implementation.
128 CloudPrintURLFetcher::ResponseAction PrinterJobHandler::HandleRawResponse(
143 return CloudPrintURLFetcher::STOP_PROCESSING;
145 return CloudPrintURLFetcher::CONTINUE_PROCESSING;
148 CloudPrintURLFetcher::ResponseAction PrinterJobHandler::HandleRawData(
153 return CloudPrintURLFetcher::CONTINUE_PROCESSING;
157 CloudPrintURLFetcher::ResponseAction PrinterJobHandler::HandleJSONData(
182 CloudPrintURLFetcher::ResponseAction PrinterJobHandler::OnRequestAuthError() {
188 return CloudPrintURLFetcher::STOP_PROCESSING;
281 CloudPrintURLFetcher::ResponseActio
    [all...]
printer_job_handler_unittest.cc 248 : public CloudPrintURLFetcher {
267 virtual CloudPrintURLFetcher* CreateCloudPrintURLFetcher() OVERRIDE {
502 CloudPrintURLFetcher::set_factory(&cloud_print_factory_);
632 CloudPrintURLFetcher::set_factory(NULL);

Completed in 63 milliseconds