#ifndef EXTENSIONS_BROWSER_API_PRINTER_PROVIDER_PRINTER_PROVIDER_INTERNAL_API_H_
#define EXTENSIONS_BROWSER_API_PRINTER_PROVIDER_PRINTER_PROVIDER_INTERNAL_API_H_
#include <string>
#include "base/observer_list.h"
#include "base/values.h"
#include "extensions/browser/api/printer_provider/printer_provider_internal_api_observer.h"
#include "extensions/browser/browser_context_keyed_api_factory.h"
#include "extensions/browser/extension_function.h"
#include "extensions/common/api/printer_provider_internal.h"
namespace base {
class RefCountedMemory;
}
namespace content {
class BlobHandle;
class BrowserContext;
}
namespace extensions {
class Extension;
}
namespace extensions {
class PrinterProviderInternalAPI : public BrowserContextKeyedAPI { … };
class PrinterProviderInternalReportPrintResultFunction
: public ExtensionFunction { … };
class PrinterProviderInternalReportPrinterCapabilityFunction
: public ExtensionFunction { … };
class PrinterProviderInternalReportPrintersFunction : public ExtensionFunction { … };
class PrinterProviderInternalGetPrintDataFunction : public ExtensionFunction { … };
class PrinterProviderInternalReportUsbPrinterInfoFunction
: public ExtensionFunction { … };
}
#endif