OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CloudPrintURLFetcher
(Results
1 - 14
of
14
) sorted by null
/external/chromium_org/chrome/service/cloud_print/
cloud_print_url_fetcher.h
29
class
CloudPrintURLFetcher
;
32
virtual
CloudPrintURLFetcher
* CreateCloudPrintURLFetcher() = 0;
41
class
CloudPrintURLFetcher
42
: public base::RefCountedThreadSafe<
CloudPrintURLFetcher
>,
97
//
CloudPrintURLFetcher
will request auth info before sending any request.
104
static
CloudPrintURLFetcher
* Create();
124
CloudPrintURLFetcher
();
125
friend class base::RefCountedThreadSafe<
CloudPrintURLFetcher
>;
126
virtual ~
CloudPrintURLFetcher
();
151
typedef
CloudPrintURLFetcher
::Delegate CloudPrintURLFetcherDelegate
[
all
...]
cloud_print_url_fetcher.cc
29
CloudPrintURLFetcher
*
CloudPrintURLFetcher
::Create() {
30
CloudPrintURLFetcherFactory* factory =
CloudPrintURLFetcher
::factory();
32
new
CloudPrintURLFetcher
;
36
CloudPrintURLFetcherFactory*
CloudPrintURLFetcher
::factory() {
41
void
CloudPrintURLFetcher
::set_factory(CloudPrintURLFetcherFactory* factory) {
45
CloudPrintURLFetcher
::ResponseAction
46
CloudPrintURLFetcher
::Delegate::HandleRawResponse(
56
CloudPrintURLFetcher
::ResponseAction
57
CloudPrintURLFetcher
::Delegate::HandleRawData
[
all
...]
cloud_print_wipeout.cc
41
request_ =
CloudPrintURLFetcher
::Create();
45
CloudPrintURLFetcher
::ResponseAction CloudPrintWipeout::HandleJSONData(
52
return
CloudPrintURLFetcher
::STOP_PROCESSING;
59
CloudPrintURLFetcher
::ResponseAction CloudPrintWipeout::OnRequestAuthError() {
62
return
CloudPrintURLFetcher
::STOP_PROCESSING;
job_status_updater.cc
61
request_ =
CloudPrintURLFetcher
::Create();
79
//
CloudPrintURLFetcher
::Delegate implementation.
80
CloudPrintURLFetcher
::ResponseAction JobStatusUpdater::HandleJSONData(
89
return
CloudPrintURLFetcher
::STOP_PROCESSING;
92
CloudPrintURLFetcher
::ResponseAction JobStatusUpdater::OnRequestAuthError() {
99
return
CloudPrintURLFetcher
::STOP_PROCESSING;
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_;
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_connector.h
57
typedef
CloudPrintURLFetcher
::ResponseAction
89
//
CloudPrintURLFetcher
::Delegate implementation.
90
virtual
CloudPrintURLFetcher
::ResponseAction HandleRawData(
94
virtual
CloudPrintURLFetcher
::ResponseAction HandleJSONData(
99
virtual
CloudPrintURLFetcher
::ResponseAction OnRequestAuthError() OVERRIDE;
103
CloudPrintURLFetcher
::ResponseAction HandlePrinterListResponse(
109
CloudPrintURLFetcher
::ResponseAction HandlePrinterDeleteResponse(
115
CloudPrintURLFetcher
::ResponseAction HandleRegisterPrinterResponse(
179
// The
CloudPrintURLFetcher
instance for the current request.
180
scoped_refptr<
CloudPrintURLFetcher
> request_
[
all
...]
printer_job_handler.h
113
//
CloudPrintURLFetcher
::Delegate implementation.
114
virtual
CloudPrintURLFetcher
::ResponseAction HandleRawResponse(
121
virtual
CloudPrintURLFetcher
::ResponseAction HandleRawData(
125
virtual
CloudPrintURLFetcher
::ResponseAction HandleJSONData(
131
virtual
CloudPrintURLFetcher
::ResponseAction OnRequestAuthError() OVERRIDE;
161
typedef
CloudPrintURLFetcher
::ResponseAction
167
typedef
CloudPrintURLFetcher
::ResponseAction
175
CloudPrintURLFetcher
::ResponseAction HandlePrinterUpdateResponse(
181
CloudPrintURLFetcher
::ResponseAction HandleJobMetadataResponse(
187
CloudPrintURLFetcher
::ResponseAction HandlePrintTicketResponse
[
all
...]
job_status_updater.h
47
//
CloudPrintURLFetcher
::Delegate implementation.
48
virtual
CloudPrintURLFetcher
::ResponseAction HandleJSONData(
53
virtual
CloudPrintURLFetcher
::ResponseAction OnRequestAuthError() OVERRIDE;
64
scoped_refptr<
CloudPrintURLFetcher
> request_;
cloud_print_auth.cc
40
request_ =
CloudPrintURLFetcher
::Create();
121
CloudPrintURLFetcher
::ResponseAction CloudPrintAuth::HandleJSONData(
129
return
CloudPrintURLFetcher
::STOP_PROCESSING;
136
return
CloudPrintURLFetcher
::STOP_PROCESSING;
148
return
CloudPrintURLFetcher
::STOP_PROCESSING;
151
CloudPrintURLFetcher
::ResponseAction CloudPrintAuth::OnRequestAuthError() {
155
return
CloudPrintURLFetcher
::STOP_PROCESSING;
printer_job_handler.cc
94
//
CloudPrintURLFetcher
::Delegate implementation.
95
CloudPrintURLFetcher
::ResponseAction PrinterJobHandler::HandleRawResponse(
110
return
CloudPrintURLFetcher
::STOP_PROCESSING;
112
return
CloudPrintURLFetcher
::CONTINUE_PROCESSING;
115
CloudPrintURLFetcher
::ResponseAction PrinterJobHandler::HandleRawData(
120
return
CloudPrintURLFetcher
::CONTINUE_PROCESSING;
124
CloudPrintURLFetcher
::ResponseAction PrinterJobHandler::HandleJSONData(
149
CloudPrintURLFetcher
::ResponseAction PrinterJobHandler::OnRequestAuthError() {
155
return
CloudPrintURLFetcher
::STOP_PROCESSING;
230
CloudPrintURLFetcher
::ResponseActio
[
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_;
cloud_print_connector.cc
139
//
CloudPrintURLFetcher
::Delegate implementation.
140
CloudPrintURLFetcher
::ResponseAction CloudPrintConnector::HandleRawData(
148
return
CloudPrintURLFetcher
::STOP_PROCESSING;
149
return
CloudPrintURLFetcher
::CONTINUE_PROCESSING;
152
CloudPrintURLFetcher
::ResponseAction CloudPrintConnector::HandleJSONData(
158
return
CloudPrintURLFetcher
::STOP_PROCESSING;
164
CloudPrintURLFetcher
::ResponseAction CloudPrintConnector::OnRequestAuthError() {
166
return
CloudPrintURLFetcher
::STOP_PROCESSING;
175
CloudPrintURLFetcher
::ResponseAction
183
return
CloudPrintURLFetcher
::RETRY_REQUEST
[
all
...]
printer_job_handler_unittest.cc
247
: public
CloudPrintURLFetcher
{
266
virtual
CloudPrintURLFetcher
* CreateCloudPrintURLFetcher() OVERRIDE {
493
CloudPrintURLFetcher
::set_factory(&cloud_print_factory_);
609
CloudPrintURLFetcher
::set_factory(NULL);
Completed in 611 milliseconds