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

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

Issue 8989006: Update PPAPI IDL generator to define versioned structs, and unversioned typedef. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase for line-wrap. Created 8 years, 11 months 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
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef PPAPI_PROXY_HOST_VAR_SERIALIZATION_RULES_H_ 5 #ifndef PPAPI_PROXY_HOST_VAR_SERIALIZATION_RULES_H_
6 #define PPAPI_PROXY_HOST_VAR_SERIALIZATION_RULES_H_ 6 #define PPAPI_PROXY_HOST_VAR_SERIALIZATION_RULES_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "ppapi/c/pp_module.h" 11 #include "ppapi/c/pp_module.h"
12 #include "ppapi/c/ppb_var.h"
12 #include "ppapi/proxy/var_serialization_rules.h" 13 #include "ppapi/proxy/var_serialization_rules.h"
13 14
14 struct PPB_Var;
15
16 namespace ppapi { 15 namespace ppapi {
17 namespace proxy { 16 namespace proxy {
18 17
19 // Implementation of the VarSerializationRules interface for the host side. 18 // Implementation of the VarSerializationRules interface for the host side.
20 class HostVarSerializationRules : public VarSerializationRules { 19 class HostVarSerializationRules : public VarSerializationRules {
21 public: 20 public:
22 HostVarSerializationRules(const PPB_Var* var_interface, 21 HostVarSerializationRules(const PPB_Var* var_interface,
23 PP_Module pp_module); 22 PP_Module pp_module);
24 ~HostVarSerializationRules(); 23 ~HostVarSerializationRules();
25 24
(...skipping 18 matching lines...) Expand all
44 const PPB_Var* var_interface_; 43 const PPB_Var* var_interface_;
45 PP_Module pp_module_; 44 PP_Module pp_module_;
46 45
47 DISALLOW_COPY_AND_ASSIGN(HostVarSerializationRules); 46 DISALLOW_COPY_AND_ASSIGN(HostVarSerializationRules);
48 }; 47 };
49 48
50 } // namespace proxy 49 } // namespace proxy
51 } // namespace ppapi 50 } // namespace ppapi
52 51
53 #endif // PPAPI_PROXY_HOST_VAR_SERIALIZATION_RULES_H_ 52 #endif // PPAPI_PROXY_HOST_VAR_SERIALIZATION_RULES_H_
OLDNEW
« no previous file with comments | « ppapi/native_client/tests/ppapi_test_lib/get_browser_interface.h ('k') | ppapi/proxy/interface_list.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698