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