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 GCP20_PROTOTYPE_PRINTER_H_ | 5 #ifndef CLOUD_PRINT_GCP20_PROTOTYPE_PRINTER_H_ |
6 #define 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/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
13 #include "cloud_print/gcp20/prototype/cloud_print_requester.h" | 14 #include "cloud_print/gcp20/prototype/cloud_print_requester.h" |
14 #include "cloud_print/gcp20/prototype/cloud_print_xmpp_listener.h" | 15 #include "cloud_print/gcp20/prototype/cloud_print_xmpp_listener.h" |
15 #include "cloud_print/gcp20/prototype/dns_sd_server.h" | 16 #include "cloud_print/gcp20/prototype/dns_sd_server.h" |
16 #include "cloud_print/gcp20/prototype/print_job_handler.h" | 17 #include "cloud_print/gcp20/prototype/print_job_handler.h" |
17 #include "cloud_print/gcp20/prototype/printer_state.h" | 18 #include "cloud_print/gcp20/prototype/printer_state.h" |
18 #include "cloud_print/gcp20/prototype/privet_http_server.h" | 19 #include "cloud_print/gcp20/prototype/privet_http_server.h" |
19 #include "cloud_print/gcp20/prototype/x_privet_token.h" | 20 #include "cloud_print/gcp20/prototype/x_privet_token.h" |
20 | 21 |
21 extern const base::FilePath::CharType kPrinterStatePath[]; | 22 extern const base::FilePath::CharType kPrinterStatePath[]; |
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
245 | 246 |
246 // Contains |true| if Printer has to check available printjobs. | 247 // Contains |true| if Printer has to check available printjobs. |
247 bool pending_print_jobs_check_; | 248 bool pending_print_jobs_check_; |
248 | 249 |
249 // Contains |true| if Printer has to be deleted. | 250 // Contains |true| if Printer has to be deleted. |
250 bool pending_deletion_; | 251 bool pending_deletion_; |
251 | 252 |
252 DISALLOW_COPY_AND_ASSIGN(Printer); | 253 DISALLOW_COPY_AND_ASSIGN(Printer); |
253 }; | 254 }; |
254 | 255 |
255 #endif // GCP20_PROTOTYPE_PRINTER_H_ | 256 #endif // CLOUD_PRINT_GCP20_PROTOTYPE_PRINTER_H_ |
256 | 257 |
OLD | NEW |