summaryrefslogtreecommitdiffstats
path: root/chrome/renderer/pepper/chrome_ppapi_interfaces.cc
blob: f62ab791e21504e7517155219696dbdfed7eb530 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/renderer/pepper/chrome_ppapi_interfaces.h"

#include "chrome/renderer/pepper/ppb_flash_print_impl.h"
#include "chrome/renderer/pepper/ppb_nacl_private_impl.h"
#include "chrome/renderer/pepper/ppb_pdf_impl.h"
#include "ppapi/c/private/ppb_flash_print.h"
#include "ppapi/c/private/ppb_nacl_private.h"
#include "ppapi/c/private/ppb_pdf.h"
#include "webkit/plugins/ppapi/ppapi_interface_factory.h"

namespace chrome {

const void* ChromePPAPIInterfaceFactory(const std::string& interface_name) {
#if !defined(DISABLE_NACL)
  if (interface_name == PPB_NACL_PRIVATE_INTERFACE)
    return PPB_NaCl_Private_Impl::GetInterface();
#endif  // DISABLE_NACL
  if (interface_name == PPB_PDF_INTERFACE)
    return PPB_PDF_Impl::GetInterface();
  if (interface_name == PPB_FLASH_PRINT_INTERFACE)
    return PPB_Flash_Print_Impl::GetInterface();
  return NULL;
}

}  // namespace chrome