Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(759)

Side by Side Diff: ppapi/proxy/ppb_var_proxy.h

Issue 8826011: Remove PP_Module from parameters for PPB_Var.VarFromUtf8. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix windows build and some nacl tests. Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698