OLD | NEW |
| (Empty) |
1 // Copyright (c) 2011 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 #ifndef PPAPI_PPB_VAR_PROXY_H_ | |
6 #define PPAPI_PPB_VAR_PROXY_H_ | |
7 | |
8 #include "ppapi/proxy/ppapi_proxy_export.h" | |
9 #include "ppapi/proxy/interface_proxy.h" | |
10 | |
11 struct PPB_Var; | |
12 | |
13 namespace ppapi { | |
14 namespace proxy { | |
15 | |
16 // Returns a pointer to the plugin-specific implementation of PPB_Var. | |
17 // There is no proxy object since this is implemented entirely in-process. | |
18 PPAPI_PROXY_EXPORT const PPB_Var* GetPPB_Var_Interface(); | |
19 | |
20 } // namespace proxy | |
21 } // namespace ppapi | |
22 | |
23 #endif // PPAPI_PPB_VAR_PROXY_H_ | |
OLD | NEW |