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

Unified Diff: content/browser/service_worker/embedded_worker_test_helper.h

Issue 2958753003: Revert "Create ServiceWorkerProviderHost before starting worker" (Closed)
Patch Set: Created 3 years, 6 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/service_worker/embedded_worker_test_helper.h
diff --git a/content/browser/service_worker/embedded_worker_test_helper.h b/content/browser/service_worker/embedded_worker_test_helper.h
index 3038c9e6096603dcb9c3ac311fd995feb0339fc6..b94ffebb7bace031b23f346e9cf5a7610e86630c 100644
--- a/content/browser/service_worker/embedded_worker_test_helper.h
+++ b/content/browser/service_worker/embedded_worker_test_helper.h
@@ -83,8 +83,7 @@ class EmbeddedWorkerTestHelper : public IPC::Sender,
void StartWorker(
const EmbeddedWorkerStartParams& params,
mojom::ServiceWorkerEventDispatcherRequest dispatcher_request,
- mojom::EmbeddedWorkerInstanceHostAssociatedPtrInfo instance_host,
- mojom::ServiceWorkerProviderInfoForStartWorkerPtr provider_info)
+ mojom::EmbeddedWorkerInstanceHostAssociatedPtrInfo instance_host)
override;
void StopWorker() override;
void ResumeAfterDownload() override;
@@ -115,7 +114,7 @@ class EmbeddedWorkerTestHelper : public IPC::Sender,
// IPC::Listener implementation.
bool OnMessageReceived(const IPC::Message& msg) override;
- // Registers a Mojo endpoint object derived from
+ // Register a mojo endpoint object derived from
// MockEmbeddedWorkerInstanceClient.
void RegisterMockInstanceClient(
std::unique_ptr<MockEmbeddedWorkerInstanceClient> client);
@@ -148,6 +147,7 @@ class EmbeddedWorkerTestHelper : public IPC::Sender,
void ShutdownContext();
int GetNextThreadId() { return next_thread_id_++; }
+ int GetNextProviderId() { return next_provider_id_++; }
int mock_render_process_id() const { return mock_render_process_id_; }
MockRenderProcessHost* mock_render_process_host() {
@@ -180,8 +180,7 @@ class EmbeddedWorkerTestHelper : public IPC::Sender,
const GURL& script_url,
bool pause_after_download,
mojom::ServiceWorkerEventDispatcherRequest request,
- mojom::EmbeddedWorkerInstanceHostAssociatedPtrInfo instance_host,
- mojom::ServiceWorkerProviderInfoForStartWorkerPtr provider_info);
+ mojom::EmbeddedWorkerInstanceHostAssociatedPtrInfo instance_host);
virtual void OnResumeAfterDownload(int embedded_worker_id);
// StopWorker IPC handler routed through MockEmbeddedWorkerInstanceClient.
// This calls SimulateWorkerStopped() by default.
@@ -252,7 +251,9 @@ class EmbeddedWorkerTestHelper : public IPC::Sender,
void SimulateWorkerReadyForInspection(int embedded_worker_id);
void SimulateWorkerScriptCached(int embedded_worker_id);
void SimulateWorkerScriptLoaded(int embedded_worker_id);
- void SimulateWorkerThreadStarted(int thread_id, int embedded_worker_id);
+ void SimulateWorkerThreadStarted(int thread_id,
+ int embedded_worker_id,
+ int provider_id);
void SimulateWorkerScriptEvaluated(int embedded_worker_id, bool success);
void SimulateWorkerStarted(int embedded_worker_id);
void SimulateWorkerStopped(int embedded_worker_id);
@@ -266,8 +267,7 @@ class EmbeddedWorkerTestHelper : public IPC::Sender,
void OnStartWorkerStub(
const EmbeddedWorkerStartParams& params,
mojom::ServiceWorkerEventDispatcherRequest request,
- mojom::EmbeddedWorkerInstanceHostAssociatedPtrInfo instance_host,
- mojom::ServiceWorkerProviderInfoForStartWorkerPtr provider_info);
+ mojom::EmbeddedWorkerInstanceHostAssociatedPtrInfo instance_host);
void OnResumeAfterDownloadStub(int embedded_worker_id);
void OnStopWorkerStub(int embedded_worker_id);
void OnMessageToWorkerStub(int thread_id,
@@ -344,6 +344,7 @@ class EmbeddedWorkerTestHelper : public IPC::Sender,
size_t mock_instance_clients_next_index_;
int next_thread_id_;
+ int next_provider_id_;
int mock_render_process_id_;
int new_mock_render_process_id_;

Powered by Google App Engine
This is Rietveld 408576698