OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 EXTENSIONS_BROWSER_API_PRINTER_PROVIDER_INTERNAL_PRINTER_PROVIDER_INTERN
AL_API_H_ | 5 #ifndef EXTENSIONS_BROWSER_API_PRINTER_PROVIDER_INTERNAL_PRINTER_PROVIDER_INTERN
AL_API_H_ |
6 #define EXTENSIONS_BROWSER_API_PRINTER_PROVIDER_INTERNAL_PRINTER_PROVIDER_INTERN
AL_API_H_ | 6 #define EXTENSIONS_BROWSER_API_PRINTER_PROVIDER_INTERNAL_PRINTER_PROVIDER_INTERN
AL_API_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 #include "base/observer_list.h" | 11 #include "base/observer_list.h" |
12 #include "extensions/browser/api/printer_provider_internal/printer_provider_inte
rnal_api_observer.h" | 12 #include "extensions/browser/api/printer_provider_internal/printer_provider_inte
rnal_api_observer.h" |
13 #include "extensions/browser/browser_context_keyed_api_factory.h" | 13 #include "extensions/browser/browser_context_keyed_api_factory.h" |
14 #include "extensions/browser/extension_function.h" | 14 #include "extensions/browser/extension_function.h" |
15 #include "extensions/common/api/printer_provider_internal.h" | 15 #include "extensions/common/api/printer_provider_internal.h" |
16 | 16 |
17 namespace base { | 17 namespace base { |
18 class DictionaryValue; | 18 class DictionaryValue; |
19 class ListValue; | |
20 class RefCountedMemory; | 19 class RefCountedMemory; |
21 } | 20 } |
22 | 21 |
23 namespace content { | 22 namespace content { |
24 class BlobHandle; | 23 class BlobHandle; |
25 class BrowserContext; | 24 class BrowserContext; |
26 } | 25 } |
27 | 26 |
28 namespace extensions { | 27 namespace extensions { |
29 class Extension; | 28 class Extension; |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 private: | 172 private: |
174 DECLARE_EXTENSION_FUNCTION("printerProviderInternal.reportUsbPrinterInfo", | 173 DECLARE_EXTENSION_FUNCTION("printerProviderInternal.reportUsbPrinterInfo", |
175 PRINTERPROVIDERINTERNAL_REPORTUSBPRINTERINFO) | 174 PRINTERPROVIDERINTERNAL_REPORTUSBPRINTERINFO) |
176 | 175 |
177 DISALLOW_COPY_AND_ASSIGN(PrinterProviderInternalReportUsbPrinterInfoFunction); | 176 DISALLOW_COPY_AND_ASSIGN(PrinterProviderInternalReportUsbPrinterInfoFunction); |
178 }; | 177 }; |
179 | 178 |
180 } // namespace extensions | 179 } // namespace extensions |
181 | 180 |
182 #endif // EXTENSIONS_BROWSER_API_PRINTER_PROVIDER_INTERNAL_PRINTER_PROVIDER_INT
ERNAL_API_H_ | 181 #endif // EXTENSIONS_BROWSER_API_PRINTER_PROVIDER_INTERNAL_PRINTER_PROVIDER_INT
ERNAL_API_H_ |
OLD | NEW |