Upload upstream chromium 76.0.3809.146
[platform/framework/web/chromium-efl.git] / pdf / pdf_ppapi.h
1 // Copyright 2018 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.
4
5 #ifndef PDF_PDF_PPAPI_H_
6 #define PDF_PDF_PPAPI_H_
7
8 #include "ppapi/c/ppb.h"
9 #include "ppapi/cpp/module.h"
10
11 namespace chrome_pdf {
12
13 int PPP_InitializeModule(PP_Module module_id,
14                          PPB_GetInterface get_browser_interface);
15 void PPP_ShutdownModule();
16 const void* PPP_GetInterface(const char* interface_name);
17
18 bool IsSDKInitializedViaPepper();
19
20 }  // namespace chrome_pdf
21
22 #endif  // PDF_PDF_PPAPI_H_