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 #include <vector> | 10 #include <vector> |
(...skipping 11 matching lines...) Expand all Loading... |
22 // 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 |
23 // sending/receiving pepper ResourceHost related messages. When the browser | 23 // sending/receiving pepper ResourceHost related messages. When the browser |
24 // and renderer communicate about ResourceHosts, they should pass the plugin | 24 // and renderer communicate about ResourceHosts, they should pass the plugin |
25 // process ID to identify which plugin they are talking about. | 25 // process ID to identify which plugin they are talking about. |
26 class PepperBrowserConnection | 26 class PepperBrowserConnection |
27 : public RenderViewObserver, | 27 : public RenderViewObserver, |
28 public RenderViewObserverTracker<PepperBrowserConnection> { | 28 public RenderViewObserverTracker<PepperBrowserConnection> { |
29 public: | 29 public: |
30 typedef base::Callback<void(const std::vector<int>&)> | 30 typedef base::Callback<void(const std::vector<int>&)> |
31 PendingResourceIDCallback; | 31 PendingResourceIDCallback; |
| 32 typedef base::Callback<void( |
| 33 const std::vector<PP_Resource>&, |
| 34 const std::vector<PP_FileSystemType>&, |
| 35 const std::vector<std::string>&, |
| 36 const std::vector<base::FilePath>&)> FileRefGetInfoCallback; |
| 37 |
32 explicit PepperBrowserConnection(RenderView* render_view); | 38 explicit PepperBrowserConnection(RenderView* render_view); |
33 virtual ~PepperBrowserConnection(); | 39 virtual ~PepperBrowserConnection(); |
34 | 40 |
35 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; | 41 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; |
36 | 42 |
37 // TODO(teravest): Instead of having separate methods per message, we should | 43 // TODO(teravest): Instead of having separate methods per message, we should |
38 // add generic functionality similar to PluginResource::Call(). | 44 // add generic functionality similar to PluginResource::Call(). |
39 | 45 |
40 // Sends a request to the browser to create ResourceHosts for the given | 46 // Sends a request to the browser to create ResourceHosts for the given |
41 // |instance| of a plugin identified by |child_process_id|. |callback| will be | 47 // |instance| of a plugin identified by |child_process_id|. |callback| will be |
42 // run when a reply is received with the pending resource IDs. | 48 // run when a reply is received with the pending resource IDs. |
43 void SendBrowserCreate(PP_Instance instance, | 49 void SendBrowserCreate(PP_Instance instance, |
44 int child_process_id, | 50 int child_process_id, |
45 const std::vector<IPC::Message>& create_messages, | 51 const std::vector<IPC::Message>& create_messages, |
46 const PendingResourceIDCallback& callback); | 52 const PendingResourceIDCallback& callback); |
47 | 53 |
| 54 // Sends a request to the browser to get information about the given FileRef |
| 55 // |resource|. |callback| will be run when a reply is received with the |
| 56 // file information. |
| 57 void SendBrowserFileRefGetInfo(int child_process_id, |
| 58 const std::vector<PP_Resource>& resource, |
| 59 const FileRefGetInfoCallback& callback); |
| 60 |
48 // Called when the renderer creates an in-process instance. | 61 // Called when the renderer creates an in-process instance. |
49 void DidCreateInProcessInstance(PP_Instance instance, | 62 void DidCreateInProcessInstance(PP_Instance instance, |
50 int render_view_id, | 63 int render_view_id, |
51 const GURL& document_url, | 64 const GURL& document_url, |
52 const GURL& plugin_url); | 65 const GURL& plugin_url); |
53 | 66 |
54 // Called when the renderer deletes an in-process instance. | 67 // Called when the renderer deletes an in-process instance. |
55 void DidDeleteInProcessInstance(PP_Instance instance); | 68 void DidDeleteInProcessInstance(PP_Instance instance); |
56 | 69 |
57 private: | 70 private: |
58 // Message handlers. | 71 // Message handlers. |
59 void OnMsgCreateResourceHostsFromHostReply( | 72 void OnMsgCreateResourceHostsFromHostReply( |
60 int32_t sequence_number, | 73 int32_t sequence_number, |
61 const std::vector<int>& pending_resource_host_ids); | 74 const std::vector<int>& pending_resource_host_ids); |
| 75 void OnMsgFileRefGetInfoReply( |
| 76 int32_t sequence_number, |
| 77 const std::vector<PP_Resource>& resources, |
| 78 const std::vector<PP_FileSystemType>& types, |
| 79 const std::vector<std::string>& file_system_url_specs, |
| 80 const std::vector<base::FilePath>& external_paths); |
62 | 81 |
63 // Return the next sequence number. | 82 // Return the next sequence number. |
64 int32_t GetNextSequence(); | 83 int32_t GetNextSequence(); |
65 | 84 |
66 // Sequence number to track pending callbacks. | 85 // Sequence number to track pending callbacks. |
67 int32_t next_sequence_number_; | 86 int32_t next_sequence_number_; |
68 | 87 |
69 // Maps a sequence number to the callback to be run. | 88 // Maps a sequence number to the callback to be run. |
70 std::map<int32_t, PendingResourceIDCallback> pending_create_map_; | 89 std::map<int32_t, PendingResourceIDCallback> pending_create_map_; |
| 90 std::map<int32_t, FileRefGetInfoCallback> get_info_map_; |
71 DISALLOW_COPY_AND_ASSIGN(PepperBrowserConnection); | 91 DISALLOW_COPY_AND_ASSIGN(PepperBrowserConnection); |
72 }; | 92 }; |
73 | 93 |
74 } // namespace content | 94 } // namespace content |
75 | 95 |
76 #endif // CONTENT_RENDERER_PEPPER_PEPPER_BROWSER_CONNECTION_H_ | 96 #endif // CONTENT_RENDERER_PEPPER_PEPPER_BROWSER_CONNECTION_H_ |
OLD | NEW |