OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CONTENT_RENDERER_PEPPER_PEPPER_BROWSER_CONNECTION_H_ | 5 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_BROWSER_CONNECTION_H_ |
6 #define CONTENT_RENDERER_PEPPER_PEPPER_BROWSER_CONNECTION_H_ | 6 #define CONTENT_RENDERER_PEPPER_PEPPER_BROWSER_CONNECTION_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/callback.h" | 11 #include "base/callback.h" |
12 #include "base/files/file_path.h" | 12 #include "base/files/file_path.h" |
13 #include "content/public/renderer/render_view_observer.h" | 13 #include "content/public/renderer/render_view_observer.h" |
14 #include "content/public/renderer/render_view_observer_tracker.h" | 14 #include "content/public/renderer/render_view_observer_tracker.h" |
15 #include "ppapi/c/pp_file_info.h" | 15 #include "ppapi/c/pp_file_info.h" |
16 #include "ppapi/c/pp_instance.h" | 16 #include "ppapi/c/pp_instance.h" |
17 #include "ppapi/c/pp_resource.h" | 17 #include "ppapi/c/pp_resource.h" |
| 18 #include "ppapi/shared_impl/file_ref_detailed_info.h" |
18 | 19 |
19 namespace content { | 20 namespace content { |
20 | 21 |
21 // This class represents a connection from the renderer to the browser for | 22 // This class represents a connection from the renderer to the browser for |
22 // sending/receiving pepper ResourceHost related messages. When the browser | 23 // sending/receiving pepper ResourceHost related messages. When the browser |
23 // and renderer communicate about ResourceHosts, they should pass the plugin | 24 // and renderer communicate about ResourceHosts, they should pass the plugin |
24 // process ID to identify which plugin they are talking about. | 25 // process ID to identify which plugin they are talking about. |
25 class PepperBrowserConnection | 26 class PepperBrowserConnection |
26 : public RenderViewObserver, | 27 : public RenderViewObserver, |
27 public RenderViewObserverTracker<PepperBrowserConnection> { | 28 public RenderViewObserverTracker<PepperBrowserConnection> { |
28 public: | 29 public: |
29 typedef base::Callback<void(int)> PendingResourceIDCallback; | 30 typedef base::Callback<void(int)> PendingResourceIDCallback; |
30 typedef base::Callback<void( | 31 typedef base::Callback<void( |
31 const std::vector<PP_Resource>&, | 32 const std::vector<ppapi::FileRefDetailedInfo>&)> FileRefGetInfoCallback; |
32 const std::vector<PP_FileSystemType>&, | |
33 const std::vector<std::string>&, | |
34 const std::vector<base::FilePath>&)> FileRefGetInfoCallback; | |
35 | 33 |
36 explicit PepperBrowserConnection(RenderView* render_view); | 34 explicit PepperBrowserConnection(RenderView* render_view); |
37 virtual ~PepperBrowserConnection(); | 35 virtual ~PepperBrowserConnection(); |
38 | 36 |
39 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; | 37 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; |
40 | 38 |
41 // TODO(teravest): Instead of having separate methods per message, we should | 39 // TODO(teravest): Instead of having separate methods per message, we should |
42 // add generic functionality similar to PluginResource::Call(). | 40 // add generic functionality similar to PluginResource::Call(). |
43 | 41 |
44 // Sends a request to the browser to create a ResourceHost for the given | 42 // Sends a request to the browser to create a ResourceHost for the given |
(...skipping 19 matching lines...) Expand all Loading... |
64 | 62 |
65 // Called when the renderer deletes an in-process instance. | 63 // Called when the renderer deletes an in-process instance. |
66 void DidDeleteInProcessInstance(PP_Instance instance); | 64 void DidDeleteInProcessInstance(PP_Instance instance); |
67 | 65 |
68 private: | 66 private: |
69 // Message handlers. | 67 // Message handlers. |
70 void OnMsgCreateResourceHostFromHostReply(int32_t sequence_number, | 68 void OnMsgCreateResourceHostFromHostReply(int32_t sequence_number, |
71 int pending_resource_host_id); | 69 int pending_resource_host_id); |
72 void OnMsgFileRefGetInfoReply( | 70 void OnMsgFileRefGetInfoReply( |
73 int32_t sequence_number, | 71 int32_t sequence_number, |
74 const std::vector<PP_Resource>& resources, | 72 const std::vector<ppapi::FileRefDetailedInfo>& infos); |
75 const std::vector<PP_FileSystemType>& types, | |
76 const std::vector<std::string>& file_system_url_specs, | |
77 const std::vector<base::FilePath>& external_paths); | |
78 | 73 |
79 // Return the next sequence number. | 74 // Return the next sequence number. |
80 int32_t GetNextSequence(); | 75 int32_t GetNextSequence(); |
81 | 76 |
82 // Sequence number to track pending callbacks. | 77 // Sequence number to track pending callbacks. |
83 int32_t next_sequence_number_; | 78 int32_t next_sequence_number_; |
84 | 79 |
85 // Maps a sequence number to the callback to be run. | 80 // Maps a sequence number to the callback to be run. |
86 std::map<int32_t, PendingResourceIDCallback> pending_create_map_; | 81 std::map<int32_t, PendingResourceIDCallback> pending_create_map_; |
87 std::map<int32_t, FileRefGetInfoCallback> get_info_map_; | 82 std::map<int32_t, FileRefGetInfoCallback> get_info_map_; |
88 DISALLOW_COPY_AND_ASSIGN(PepperBrowserConnection); | 83 DISALLOW_COPY_AND_ASSIGN(PepperBrowserConnection); |
89 }; | 84 }; |
90 | 85 |
91 } // namespace content | 86 } // namespace content |
92 | 87 |
93 #endif // CONTENT_RENDERER_PEPPER_PEPPER_BROWSER_CONNECTION_H_ | 88 #endif // CONTENT_RENDERER_PEPPER_PEPPER_BROWSER_CONNECTION_H_ |
OLD | NEW |