| OLD | NEW |
| (Empty) | |
| 1 /* Copyright (c) 2012 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 |
| 6 #include "ppapi/c/pp_instance.h" |
| 7 #include "ppapi/c/pp_module.h" |
| 8 |
| 9 #include "ppapi_simple/ppapi_simple_instance.h" |
| 10 #include "ppapi_simple/ppapi_simple_main.h" |
| 11 |
| 12 |
| 13 void* PSCreateMain(PP_Instance inst, PSMainFunc_t func, const char* argv[]) { |
| 14 PSInstance* pInst = new PSInstance(inst, argv); |
| 15 pInst->SetMain(func); |
| 16 return pInst; |
| 17 } |
| OLD | NEW |