OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CLOUD_PRINT_GCP20_PROTOTYPE_PRINTER_H_ | 5 #ifndef CLOUD_PRINT_GCP20_PROTOTYPE_PRINTER_H_ |
6 #define CLOUD_PRINT_GCP20_PROTOTYPE_PRINTER_H_ | 6 #define CLOUD_PRINT_GCP20_PROTOTYPE_PRINTER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
12 #include "base/gtest_prod_util.h" | 12 #include "base/gtest_prod_util.h" |
| 13 #include "base/macros.h" |
13 #include "base/memory/weak_ptr.h" | 14 #include "base/memory/weak_ptr.h" |
14 #include "cloud_print/gcp20/prototype/cloud_print_requester.h" | 15 #include "cloud_print/gcp20/prototype/cloud_print_requester.h" |
15 #include "cloud_print/gcp20/prototype/cloud_print_xmpp_listener.h" | 16 #include "cloud_print/gcp20/prototype/cloud_print_xmpp_listener.h" |
16 #include "cloud_print/gcp20/prototype/dns_sd_server.h" | 17 #include "cloud_print/gcp20/prototype/dns_sd_server.h" |
17 #include "cloud_print/gcp20/prototype/print_job_handler.h" | 18 #include "cloud_print/gcp20/prototype/print_job_handler.h" |
18 #include "cloud_print/gcp20/prototype/printer_state.h" | 19 #include "cloud_print/gcp20/prototype/printer_state.h" |
19 #include "cloud_print/gcp20/prototype/privet_http_server.h" | 20 #include "cloud_print/gcp20/prototype/privet_http_server.h" |
20 #include "cloud_print/gcp20/prototype/x_privet_token.h" | 21 #include "cloud_print/gcp20/prototype/x_privet_token.h" |
21 | 22 |
22 extern const base::FilePath::CharType kPrinterStatePath[]; | 23 extern const base::FilePath::CharType kPrinterStatePath[]; |
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
248 bool pending_print_jobs_check_; | 249 bool pending_print_jobs_check_; |
249 | 250 |
250 // Contains |true| if Printer has to be deleted. | 251 // Contains |true| if Printer has to be deleted. |
251 bool pending_deletion_; | 252 bool pending_deletion_; |
252 | 253 |
253 DISALLOW_COPY_AND_ASSIGN(Printer); | 254 DISALLOW_COPY_AND_ASSIGN(Printer); |
254 }; | 255 }; |
255 | 256 |
256 #endif // CLOUD_PRINT_GCP20_PROTOTYPE_PRINTER_H_ | 257 #endif // CLOUD_PRINT_GCP20_PROTOTYPE_PRINTER_H_ |
257 | 258 |
OLD | NEW |