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

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

Issue 2539033005: ppapi: Cleanup class/struct forward declarations (Closed)
Patch Set: Add missing forward declaration in content/renderer/pepper Created 4 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
« no previous file with comments | « ppapi/proxy/ppb_var_deprecated_proxy.h ('k') | ppapi/proxy/resource_creation_proxy.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_PPP_INSTANCE_PROXY_H_ 5 #ifndef PPAPI_PROXY_PPP_INSTANCE_PROXY_H_
6 #define PPAPI_PROXY_PPP_INSTANCE_PROXY_H_ 6 #define PPAPI_PROXY_PPP_INSTANCE_PROXY_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
11 11
12 #include "ppapi/c/pp_instance.h" 12 #include "ppapi/c/pp_instance.h"
13 #include "ppapi/c/pp_resource.h" 13 #include "ppapi/c/pp_resource.h"
14 #include "ppapi/c/pp_var.h" 14 #include "ppapi/c/pp_var.h"
15 #include "ppapi/proxy/interface_proxy.h" 15 #include "ppapi/proxy/interface_proxy.h"
16 #include "ppapi/shared_impl/host_resource.h" 16 #include "ppapi/shared_impl/host_resource.h"
17 #include "ppapi/shared_impl/ppp_instance_combined.h" 17 #include "ppapi/shared_impl/ppp_instance_combined.h"
18 18
19 struct PP_Rect;
20
21 namespace ppapi { 19 namespace ppapi {
22 20
23 struct URLResponseInfoData; 21 struct URLResponseInfoData;
24 struct ViewData; 22 struct ViewData;
25 23
26 namespace proxy { 24 namespace proxy {
27 25
28 class PPP_Instance_Proxy : public InterfaceProxy { 26 class PPP_Instance_Proxy : public InterfaceProxy {
29 public: 27 public:
30 explicit PPP_Instance_Proxy(Dispatcher* dispatcher); 28 explicit PPP_Instance_Proxy(Dispatcher* dispatcher);
(...skipping 23 matching lines...) Expand all
54 int pending_loader_host_id, 52 int pending_loader_host_id,
55 const URLResponseInfoData& data); 53 const URLResponseInfoData& data);
56 54
57 std::unique_ptr<PPP_Instance_Combined> combined_interface_; 55 std::unique_ptr<PPP_Instance_Combined> combined_interface_;
58 }; 56 };
59 57
60 } // namespace proxy 58 } // namespace proxy
61 } // namespace ppapi 59 } // namespace ppapi
62 60
63 #endif // PPAPI_PROXY_PPP_INSTANCE_PROXY_H_ 61 #endif // PPAPI_PROXY_PPP_INSTANCE_PROXY_H_
OLDNEW
« no previous file with comments | « ppapi/proxy/ppb_var_deprecated_proxy.h ('k') | ppapi/proxy/resource_creation_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698