| 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> |
| 11 | 11 |
| 12 #include "base/files/file_path.h" | 12 #include "base/files/file_path.h" |
| 13 #include "base/macros.h" |
| 13 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
| 14 #include "base/memory/weak_ptr.h" | 15 #include "base/memory/weak_ptr.h" |
| 15 #include "base/single_thread_task_runner.h" | 16 #include "base/single_thread_task_runner.h" |
| 16 #include "base/threading/thread.h" | 17 #include "base/threading/thread.h" |
| 17 #include "base/time/time.h" | 18 #include "base/time/time.h" |
| 18 #include "chrome/service/cloud_print/cloud_print_url_fetcher.h" | 19 #include "chrome/service/cloud_print/cloud_print_url_fetcher.h" |
| 19 #include "chrome/service/cloud_print/job_status_updater.h" | 20 #include "chrome/service/cloud_print/job_status_updater.h" |
| 20 #include "chrome/service/cloud_print/printer_job_queue_handler.h" | 21 #include "chrome/service/cloud_print/printer_job_queue_handler.h" |
| 21 #include "net/url_request/url_request_status.h" | 22 #include "net/url_request/url_request_status.h" |
| 22 #include "printing/backend/print_backend.h" | 23 #include "printing/backend/print_backend.h" |
| (...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 310 | 311 |
| 311 // This typedef is to workaround the issue with certain versions of | 312 // This typedef is to workaround the issue with certain versions of |
| 312 // Visual Studio where it gets confused between multiple Delegate | 313 // Visual Studio where it gets confused between multiple Delegate |
| 313 // classes and gives a C2500 error. (I saw this error on the try bots - | 314 // classes and gives a C2500 error. (I saw this error on the try bots - |
| 314 // the workaround was not needed for my machine). | 315 // the workaround was not needed for my machine). |
| 315 typedef PrinterJobHandler::Delegate PrinterJobHandlerDelegate; | 316 typedef PrinterJobHandler::Delegate PrinterJobHandlerDelegate; |
| 316 | 317 |
| 317 } // namespace cloud_print | 318 } // namespace cloud_print |
| 318 | 319 |
| 319 #endif // CHROME_SERVICE_CLOUD_PRINT_PRINTER_JOB_HANDLER_H_ | 320 #endif // CHROME_SERVICE_CLOUD_PRINT_PRINTER_JOB_HANDLER_H_ |
| OLD | NEW |