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 #pragma once | |
8 | 7 |
9 #include <list> | 8 #include <list> |
10 #include <map> | 9 #include <map> |
11 #include <string> | 10 #include <string> |
12 | 11 |
13 #include "base/threading/thread.h" | 12 #include "base/threading/thread.h" |
14 #include "base/values.h" | 13 #include "base/values.h" |
15 #include "chrome/service/cloud_print/print_system.h" | 14 #include "chrome/service/cloud_print/print_system.h" |
16 #include "chrome/service/cloud_print/printer_job_handler.h" | 15 #include "chrome/service/cloud_print/printer_job_handler.h" |
17 | 16 |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 // The CloudPrintURLFetcher instance for the current request. | 183 // The CloudPrintURLFetcher instance for the current request. |
185 scoped_refptr<CloudPrintURLFetcher> request_; | 184 scoped_refptr<CloudPrintURLFetcher> request_; |
186 // The CloudPrintURLFetcher instance for the user message request. | 185 // The CloudPrintURLFetcher instance for the user message request. |
187 scoped_refptr<CloudPrintURLFetcher> user_message_request_; | 186 scoped_refptr<CloudPrintURLFetcher> user_message_request_; |
188 | 187 |
189 DISALLOW_COPY_AND_ASSIGN(CloudPrintConnector); | 188 DISALLOW_COPY_AND_ASSIGN(CloudPrintConnector); |
190 }; | 189 }; |
191 | 190 |
192 #endif // CHROME_SERVICE_CLOUD_PRINT_CLOUD_PRINT_CONNECTOR_H_ | 191 #endif // CHROME_SERVICE_CLOUD_PRINT_CLOUD_PRINT_CONNECTOR_H_ |
193 | 192 |
OLD | NEW |