| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_SERVICE_CLOUD_PRINT_PRINTER_JOB_HANDLER_H_ | 5 #ifndef CHROME_SERVICE_CLOUD_PRINT_PRINTER_JOB_HANDLER_H_ |
| 6 #define CHROME_SERVICE_CLOUD_PRINT_PRINTER_JOB_HANDLER_H_ | 6 #define CHROME_SERVICE_CLOUD_PRINT_PRINTER_JOB_HANDLER_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 using JobStatusUpdaterList = std::list<scoped_refptr<JobStatusUpdater>>; | 296 using JobStatusUpdaterList = std::list<scoped_refptr<JobStatusUpdater>>; |
| 297 JobStatusUpdaterList job_status_updater_list_; | 297 JobStatusUpdaterList job_status_updater_list_; |
| 298 | 298 |
| 299 // Manages parsing the job queue | 299 // Manages parsing the job queue |
| 300 PrinterJobQueueHandler job_queue_handler_; | 300 PrinterJobQueueHandler job_queue_handler_; |
| 301 | 301 |
| 302 base::TimeTicks last_job_fetch_time_; | 302 base::TimeTicks last_job_fetch_time_; |
| 303 | 303 |
| 304 base::Time job_start_time_; | 304 base::Time job_start_time_; |
| 305 base::Time spooling_start_time_; | 305 base::Time spooling_start_time_; |
| 306 base::Time last_caps_update_time_; | |
| 307 | 306 |
| 308 base::WeakPtrFactory<PrinterJobHandler> weak_ptr_factory_; | 307 base::WeakPtrFactory<PrinterJobHandler> weak_ptr_factory_; |
| 309 | 308 |
| 310 DISALLOW_COPY_AND_ASSIGN(PrinterJobHandler); | 309 DISALLOW_COPY_AND_ASSIGN(PrinterJobHandler); |
| 311 }; | 310 }; |
| 312 | 311 |
| 313 } // namespace cloud_print | 312 } // namespace cloud_print |
| 314 | 313 |
| 315 #endif // CHROME_SERVICE_CLOUD_PRINT_PRINTER_JOB_HANDLER_H_ | 314 #endif // CHROME_SERVICE_CLOUD_PRINT_PRINTER_JOB_HANDLER_H_ |
| OLD | NEW |