Update CrOS OOBE throbber to MD throbber; delete old asset
[chromium-blink-merge.git] / chrome / renderer / pepper / chrome_pdf_print_client.h
blobddec80a93676a76bc4fd755bab3ff842fddc1745
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_RENDERER_PEPPER_CHROME_PDF_PRINT_CLIENT_H_
6 #define CHROME_RENDERER_PEPPER_CHROME_PDF_PRINT_CLIENT_H_
8 #include "base/macros.h"
9 #include "components/pdf/renderer/pepper_pdf_host.h"
11 class ChromePDFPrintClient : public pdf::PepperPDFHost::PrintClient {
12 public:
13 ChromePDFPrintClient();
14 ~ChromePDFPrintClient() override;
16 private:
17 // pdf::PepperPDFHost::PrintClient:
18 bool IsPrintingEnabled(PP_Instance instance_id) override;
19 bool Print(PP_Instance instance_id) override;
21 DISALLOW_COPY_AND_ASSIGN(ChromePDFPrintClient);
24 #endif // CHROME_RENDERER_PEPPER_CHROME_PDF_PRINT_CLIENT_H_