OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_PRINT_SYSTEM_H_ | 5 #ifndef CHROME_SERVICE_CLOUD_PRINT_PRINT_SYSTEM_H_ |
6 #define CHROME_SERVICE_CLOUD_PRINT_PRINT_SYSTEM_H_ | 6 #define CHROME_SERVICE_CLOUD_PRINT_PRINT_SYSTEM_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "base/callback.h" | 13 #include "base/callback_old.h" |
14 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
15 | 15 |
16 #include "printing/backend/print_backend.h" | 16 #include "printing/backend/print_backend.h" |
17 | 17 |
18 class DictionaryValue; | 18 class DictionaryValue; |
19 class FilePath; | 19 class FilePath; |
20 | 20 |
21 namespace printing { | 21 namespace printing { |
22 class PrintBackend; | 22 class PrintBackend; |
23 struct PrinterBasicInfo; | 23 struct PrinterBasicInfo; |
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
205 // Visual Studio where it gets confused between multiple Delegate | 205 // Visual Studio where it gets confused between multiple Delegate |
206 // classes and gives a C2500 error. (I saw this error on the try bots - | 206 // classes and gives a C2500 error. (I saw this error on the try bots - |
207 // the workaround was not needed for my machine). | 207 // the workaround was not needed for my machine). |
208 typedef PrintSystem::PrintServerWatcher::Delegate PrintServerWatcherDelegate; | 208 typedef PrintSystem::PrintServerWatcher::Delegate PrintServerWatcherDelegate; |
209 typedef PrintSystem::PrinterWatcher::Delegate PrinterWatcherDelegate; | 209 typedef PrintSystem::PrinterWatcher::Delegate PrinterWatcherDelegate; |
210 typedef PrintSystem::JobSpooler::Delegate JobSpoolerDelegate; | 210 typedef PrintSystem::JobSpooler::Delegate JobSpoolerDelegate; |
211 | 211 |
212 } // namespace cloud_print | 212 } // namespace cloud_print |
213 | 213 |
214 #endif // CHROME_SERVICE_CLOUD_PRINT_PRINT_SYSTEM_H_ | 214 #endif // CHROME_SERVICE_CLOUD_PRINT_PRINT_SYSTEM_H_ |
OLD | NEW |