Home | History | Annotate | Download | only in prototype

Lines Matching defs:CloudPrintRequester

54 CloudPrintRequester::CloudPrintRequester(
66 CloudPrintRequester::~CloudPrintRequester() {
69 bool CloudPrintRequester::IsBusy() const {
73 void CloudPrintRequester::StartRegistration(const std::string& proxy_id,
107 base::Bind(&CloudPrintRequester::ParseRegisterStart, AsWeakPtr()));
111 void CloudPrintRequester::CompleteRegistration() {
114 base::Bind(&CloudPrintRequester::ParseRegisterComplete, AsWeakPtr()));
118 void CloudPrintRequester::FetchPrintJobs(const std::string& device_id) {
129 base::Bind(&CloudPrintRequester::ParseFetch, AsWeakPtr()));
133 void CloudPrintRequester::UpdateAccesstoken(const std::string& refresh_token) {
141 void CloudPrintRequester::RequestPrintJob(const Job& job) {
146 base::Bind(&CloudPrintRequester::ParsePrintJobInProgress, AsWeakPtr()));
150 void CloudPrintRequester::SendPrintJobDone(const std::string& job_id) {
154 base::Bind(&CloudPrintRequester::ParsePrintJobDone, AsWeakPtr()));
158 void CloudPrintRequester::OnFetchComplete(const std::string& response) {
165 void CloudPrintRequester::OnFetchError(const std::string& server_api,
177 void CloudPrintRequester::OnFetchTimeoutReached() {
184 void CloudPrintRequester::OnGetTokensResponse(const std::string& refresh_token,
193 void CloudPrintRequester::OnRefreshTokenResponse(
201 void CloudPrintRequester::OnOAuthError() {
207 void CloudPrintRequester::OnNetworkError(int response_code) {
218 scoped_ptr<CloudPrintRequest> CloudPrintRequester::CreateGet(
227 scoped_ptr<CloudPrintRequest> CloudPrintRequester::CreatePost(
238 void CloudPrintRequester::EraseRequest() {
245 void CloudPrintRequester::ParseRegisterStart(const std::string& response) {
270 void CloudPrintRequester::ParseRegisterComplete(const std::string& response) {
292 void CloudPrintRequester::ParseFetch(const std::string& response) {
309 void CloudPrintRequester::ParseGetPrintJobTicket(const std::string& response) {
316 base::Bind(&CloudPrintRequester::ParseGetPrintJobData, AsWeakPtr()));
321 void CloudPrintRequester::ParseGetPrintJobData(const std::string& response) {
328 void CloudPrintRequester::ParsePrintJobDone(const std::string& response) {
334 void CloudPrintRequester::ParsePrintJobInProgress(const std::string& response) {
339 base::Bind(&CloudPrintRequester::ParseGetPrintJobTicket, AsWeakPtr()));