| 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_CLOUD_PRINT_CONNECTOR_H_ | 5 #ifndef CHROME_SERVICE_CLOUD_PRINT_CLOUD_PRINT_CONNECTOR_H_ |
| 6 #define CHROME_SERVICE_CLOUD_PRINT_CLOUD_PRINT_CONNECTOR_H_ | 6 #define CHROME_SERVICE_CLOUD_PRINT_CLOUD_PRINT_CONNECTOR_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 #include "base/macros.h" |
| 12 #include "base/threading/thread.h" | 13 #include "base/threading/thread.h" |
| 13 #include "base/values.h" | 14 #include "base/values.h" |
| 14 #include "chrome/service/cloud_print/connector_settings.h" | 15 #include "chrome/service/cloud_print/connector_settings.h" |
| 15 #include "chrome/service/cloud_print/print_system.h" | 16 #include "chrome/service/cloud_print/print_system.h" |
| 16 #include "chrome/service/cloud_print/printer_job_handler.h" | 17 #include "chrome/service/cloud_print/printer_job_handler.h" |
| 17 | 18 |
| 18 namespace cloud_print { | 19 namespace cloud_print { |
| 19 | 20 |
| 20 // CloudPrintConnector handles top printer management tasks. | 21 // CloudPrintConnector handles top printer management tasks. |
| 21 // - Matching local and cloud printers | 22 // - Matching local and cloud printers |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 scoped_refptr<CloudPrintURLFetcher> user_message_request_; | 199 scoped_refptr<CloudPrintURLFetcher> user_message_request_; |
| 199 base::WeakPtrFactory<CloudPrintConnector> stats_ptr_factory_; | 200 base::WeakPtrFactory<CloudPrintConnector> stats_ptr_factory_; |
| 200 | 201 |
| 201 DISALLOW_COPY_AND_ASSIGN(CloudPrintConnector); | 202 DISALLOW_COPY_AND_ASSIGN(CloudPrintConnector); |
| 202 }; | 203 }; |
| 203 | 204 |
| 204 } // namespace cloud_print | 205 } // namespace cloud_print |
| 205 | 206 |
| 206 #endif // CHROME_SERVICE_CLOUD_PRINT_CLOUD_PRINT_CONNECTOR_H_ | 207 #endif // CHROME_SERVICE_CLOUD_PRINT_CLOUD_PRINT_CONNECTOR_H_ |
| 207 | 208 |
| OLD | NEW |