OLD | NEW |
| (Empty) |
1 /* | |
2 * Copyright 2010 The Native Client Authors. All rights reserved. | |
3 * Use of this source code is governed by a BSD-style license that can | |
4 * be found in the LICENSE file. | |
5 */ | |
6 | |
7 #ifndef NATIVE_CLIENT_TESTS_FAKE_BROWSER_PPAPI_TEST_SCRIPTABLE_H_ | |
8 #define NATIVE_CLIENT_TESTS_FAKE_BROWSER_PPAPI_TEST_SCRIPTABLE_H_ | |
9 | |
10 #include "ppapi/c/dev/ppb_var_deprecated.h" | |
11 #include "ppapi/c/pp_module.h" | |
12 #include "ppapi/c/ppb_core.h" | |
13 #include "ppapi/c/ppb_instance.h" | |
14 | |
15 void TestScriptableObject(PP_Var receiver, | |
16 const PPB_Instance* browser_instance_interface, | |
17 const PPB_Var_Deprecated* var_interface, | |
18 PP_Instance instance_id, | |
19 PP_Module browser_module_id); | |
20 | |
21 #endif // NATIVE_CLIENT_TESTS_FAKE_BROWSER_PPAPI_TEST_SCRIPTABLE_H_ | |
OLD | NEW |