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

Unified Diff: content/browser/shared_worker/shared_worker_host.h

Issue 2422793002: HTML MessagePort as mojo::MessagePipeHandle (Closed)
Patch Set: Eliminate unnecessary PostTask Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/shared_worker/shared_worker_host.h
diff --git a/content/browser/shared_worker/shared_worker_host.h b/content/browser/shared_worker/shared_worker_host.h
index 49c65f0d23c1f2938ced8c3c96d88fce8d3aa1e7..76a6520e5540e2a7248e09ddebad9ab2681e629b 100644
--- a/content/browser/shared_worker/shared_worker_host.h
+++ b/content/browser/shared_worker/shared_worker_host.h
@@ -24,6 +24,7 @@ class Message;
namespace content {
+class MessagePort;
class SharedWorkerMessageFilter;
class SharedWorkerInstance;
@@ -44,9 +45,9 @@ class SharedWorkerHost {
// Returns true iff the given message from a renderer process was forwarded to
// the worker.
- bool FilterConnectionMessage(int route_id,
- int sent_message_port_id,
- SharedWorkerMessageFilter* incoming_filter);
+ bool SendConnectToWorker(int worker_route_id,
+ const MessagePort& port,
+ SharedWorkerMessageFilter* filter);
// Handles the shutdown of the filter. If the worker has no other client,
// sends TerminateWorkerContext message to shut it down.
@@ -66,7 +67,7 @@ class SharedWorkerHost {
void WorkerReadyForInspection();
void WorkerScriptLoaded();
void WorkerScriptLoadFailed();
- void WorkerConnected(int message_port_id);
+ void WorkerConnected(int connection_request_id);
void WorkerContextDestroyed();
void AllowFileSystem(const GURL& url,
std::unique_ptr<IPC::Message> reply_msg);
@@ -95,16 +96,16 @@ class SharedWorkerHost {
class FilterInfo {
public:
FilterInfo(SharedWorkerMessageFilter* filter, int route_id)
- : filter_(filter), route_id_(route_id), message_port_id_(0) {}
+ : filter_(filter), route_id_(route_id), connection_request_id_(0) {}
SharedWorkerMessageFilter* filter() const { return filter_; }
int route_id() const { return route_id_; }
- int message_port_id() const { return message_port_id_; }
- void set_message_port_id(int id) { message_port_id_ = id; }
+ int connection_request_id() const { return connection_request_id_; }
+ void set_connection_request_id(int id) { connection_request_id_ = id; }
private:
SharedWorkerMessageFilter* filter_;
const int route_id_;
- int message_port_id_;
+ int connection_request_id_;
};
using FilterList = std::list<FilterInfo>;
@@ -114,12 +115,9 @@ class SharedWorkerHost {
void RemoveFilters(SharedWorkerMessageFilter* filter);
bool HasFilter(SharedWorkerMessageFilter* filter, int route_id) const;
- void Connect(int route_id,
- int sent_message_port_id,
- SharedWorkerMessageFilter* incoming_filter);
- void SetMessagePortID(SharedWorkerMessageFilter* filter,
- int route_id,
- int message_port_id);
+ void SetConnectionRequestID(SharedWorkerMessageFilter* filter,
+ int route_id,
+ int connection_request_id);
void AllowFileSystemResponse(std::unique_ptr<IPC::Message> reply_msg,
bool allowed);
@@ -137,6 +135,7 @@ class SharedWorkerHost {
const int worker_process_id_;
const int worker_route_id_;
+ int next_connection_request_id_;
bool termination_message_sent_ = false;
bool closed_ = false;
const base::TimeTicks creation_time_;

Powered by Google App Engine
This is Rietveld 408576698