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

Side by Side Diff: content/renderer/pepper/pepper_browser_connection.h

Issue 23011018: Modify Pepper CreateResourceHostFromHost to create multiple hosts. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 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 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 11
11 #include "base/callback.h" 12 #include "base/callback.h"
12 #include "base/files/file_path.h" 13 #include "base/files/file_path.h"
13 #include "content/public/renderer/render_view_observer.h" 14 #include "content/public/renderer/render_view_observer.h"
14 #include "content/public/renderer/render_view_observer_tracker.h" 15 #include "content/public/renderer/render_view_observer_tracker.h"
15 #include "ppapi/c/pp_file_info.h" 16 #include "ppapi/c/pp_file_info.h"
16 #include "ppapi/c/pp_instance.h" 17 #include "ppapi/c/pp_instance.h"
17 #include "ppapi/c/pp_resource.h" 18 #include "ppapi/c/pp_resource.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(const std::vector<int>&)>
31 PendingResourceIDCallback;
30 typedef base::Callback<void( 32 typedef base::Callback<void(
31 const std::vector<PP_Resource>&, 33 const std::vector<PP_Resource>&,
32 const std::vector<PP_FileSystemType>&, 34 const std::vector<PP_FileSystemType>&,
33 const std::vector<std::string>&, 35 const std::vector<std::string>&,
34 const std::vector<base::FilePath>&)> FileRefGetInfoCallback; 36 const std::vector<base::FilePath>&)> FileRefGetInfoCallback;
35 37
36 explicit PepperBrowserConnection(RenderView* render_view); 38 explicit PepperBrowserConnection(RenderView* render_view);
37 virtual ~PepperBrowserConnection(); 39 virtual ~PepperBrowserConnection();
38 40
39 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; 41 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
40 42
41 // TODO(teravest): Instead of having separate methods per message, we should 43 // TODO(teravest): Instead of having separate methods per message, we should
42 // add generic functionality similar to PluginResource::Call(). 44 // add generic functionality similar to PluginResource::Call().
43 45
44 // Sends a request to the browser to create a ResourceHost for the given 46 // Sends a request to the browser to create ResourceHosts for the given
45 // |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
46 // run when a reply is received with the pending resource ID. 48 // run when a reply is received with the pending resource IDs.
47 void SendBrowserCreate(PP_Instance instance, 49 void SendBrowserCreate(PP_Instance instance,
48 int child_process_id, 50 int child_process_id,
49 const IPC::Message& create_message, 51 const std::vector<IPC::Message>& create_messages,
50 const PendingResourceIDCallback& callback); 52 const PendingResourceIDCallback& callback);
51 53
52 // Sends a request to the browser to get information about the given FileRef 54 // Sends a request to the browser to get information about the given FileRef
53 // |resource|. |callback| will be run when a reply is received with the 55 // |resource|. |callback| will be run when a reply is received with the
54 // file information. 56 // file information.
55 void SendBrowserFileRefGetInfo(int child_process_id, 57 void SendBrowserFileRefGetInfo(int child_process_id,
56 const std::vector<PP_Resource>& resource, 58 const std::vector<PP_Resource>& resource,
57 const FileRefGetInfoCallback& callback); 59 const FileRefGetInfoCallback& callback);
58 60
59 // Called when the renderer creates an in-process instance. 61 // Called when the renderer creates an in-process instance.
60 void DidCreateInProcessInstance(PP_Instance instance, 62 void DidCreateInProcessInstance(PP_Instance instance,
61 int render_view_id, 63 int render_view_id,
62 const GURL& document_url, 64 const GURL& document_url,
63 const GURL& plugin_url); 65 const GURL& plugin_url);
64 66
65 // Called when the renderer deletes an in-process instance. 67 // Called when the renderer deletes an in-process instance.
66 void DidDeleteInProcessInstance(PP_Instance instance); 68 void DidDeleteInProcessInstance(PP_Instance instance);
67 69
68 private: 70 private:
69 // Message handlers. 71 // Message handlers.
70 void OnMsgCreateResourceHostFromHostReply(int32_t sequence_number, 72 void OnMsgCreateResourceHostsFromHostReply(
71 int pending_resource_host_id); 73 int32_t sequence_number,
74 const std::vector<int>& pending_resource_host_ids);
72 void OnMsgFileRefGetInfoReply( 75 void OnMsgFileRefGetInfoReply(
73 int32_t sequence_number, 76 int32_t sequence_number,
74 const std::vector<PP_Resource>& resources, 77 const std::vector<PP_Resource>& resources,
75 const std::vector<PP_FileSystemType>& types, 78 const std::vector<PP_FileSystemType>& types,
76 const std::vector<std::string>& file_system_url_specs, 79 const std::vector<std::string>& file_system_url_specs,
77 const std::vector<base::FilePath>& external_paths); 80 const std::vector<base::FilePath>& external_paths);
78 81
79 // Return the next sequence number. 82 // Return the next sequence number.
80 int32_t GetNextSequence(); 83 int32_t GetNextSequence();
81 84
82 // Sequence number to track pending callbacks. 85 // Sequence number to track pending callbacks.
83 int32_t next_sequence_number_; 86 int32_t next_sequence_number_;
84 87
85 // Maps a sequence number to the callback to be run. 88 // Maps a sequence number to the callback to be run.
86 std::map<int32_t, PendingResourceIDCallback> pending_create_map_; 89 std::map<int32_t, PendingResourceIDCallback> pending_create_map_;
87 std::map<int32_t, FileRefGetInfoCallback> get_info_map_; 90 std::map<int32_t, FileRefGetInfoCallback> get_info_map_;
88 DISALLOW_COPY_AND_ASSIGN(PepperBrowserConnection); 91 DISALLOW_COPY_AND_ASSIGN(PepperBrowserConnection);
89 }; 92 };
90 93
91 } // namespace content 94 } // namespace content
92 95
93 #endif // CONTENT_RENDERER_PEPPER_PEPPER_BROWSER_CONNECTION_H_ 96 #endif // CONTENT_RENDERER_PEPPER_PEPPER_BROWSER_CONNECTION_H_
OLDNEW
« no previous file with comments | « content/renderer/pepper/mock_renderer_ppapi_host.cc ('k') | content/renderer/pepper/pepper_browser_connection.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698