2 * Copyright (c) 2013 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
7 #include "ppapi/c/private/ppb_nacl_private.h"
8 #include "ppapi/cpp/module.h"
12 class ModulePpapi
: public pp::Module
{
16 virtual ~ModulePpapi();
20 virtual pp::Instance
* CreateInstance(PP_Instance pp_instance
);
23 bool init_was_successful_
;
24 const PPB_NaCl_Private
* private_interface_
;
32 Module
* CreateModule();