OLD | NEW |
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_PPB_VAR_DEPRECATED_PROXY_H_ | 5 #ifndef PPAPI_PROXY_PPB_VAR_DEPRECATED_PROXY_H_ |
6 #define PPAPI_PROXY_PPB_VAR_DEPRECATED_PROXY_H_ | 6 #define PPAPI_PROXY_PPB_VAR_DEPRECATED_PROXY_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/macros.h" | 12 #include "base/macros.h" |
13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
14 #include "ppapi/c/pp_instance.h" | 14 #include "ppapi/c/pp_instance.h" |
15 #include "ppapi/proxy/interface_proxy.h" | 15 #include "ppapi/proxy/interface_proxy.h" |
16 | 16 |
17 struct PPB_Var_Deprecated; | 17 struct PPB_Var_Deprecated; |
18 | 18 |
19 namespace ppapi { | 19 namespace ppapi { |
20 namespace proxy { | 20 namespace proxy { |
21 | 21 |
22 class SerializedVar; | |
23 class SerializedVarReceiveInput; | 22 class SerializedVarReceiveInput; |
24 class SerializedVarVectorOutParam; | 23 class SerializedVarVectorOutParam; |
25 class SerializedVarVectorReceiveInput; | 24 class SerializedVarVectorReceiveInput; |
26 class SerializedVarOutParam; | 25 class SerializedVarOutParam; |
27 class SerializedVarReturnValue; | 26 class SerializedVarReturnValue; |
28 | 27 |
29 class PPB_Var_Deprecated_Proxy : public InterfaceProxy { | 28 class PPB_Var_Deprecated_Proxy : public InterfaceProxy { |
30 public: | 29 public: |
31 explicit PPB_Var_Deprecated_Proxy(Dispatcher* dispatcher); | 30 explicit PPB_Var_Deprecated_Proxy(Dispatcher* dispatcher); |
32 virtual ~PPB_Var_Deprecated_Proxy(); | 31 virtual ~PPB_Var_Deprecated_Proxy(); |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 | 96 |
98 base::WeakPtrFactory<PPB_Var_Deprecated_Proxy> task_factory_; | 97 base::WeakPtrFactory<PPB_Var_Deprecated_Proxy> task_factory_; |
99 | 98 |
100 DISALLOW_COPY_AND_ASSIGN(PPB_Var_Deprecated_Proxy); | 99 DISALLOW_COPY_AND_ASSIGN(PPB_Var_Deprecated_Proxy); |
101 }; | 100 }; |
102 | 101 |
103 } // namespace proxy | 102 } // namespace proxy |
104 } // namespace ppapi | 103 } // namespace ppapi |
105 | 104 |
106 #endif // PPAPI_PROXY_PPB_VAR_DEPRECATED_PROXY_H_ | 105 #endif // PPAPI_PROXY_PPB_VAR_DEPRECATED_PROXY_H_ |
OLD | NEW |