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

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

Issue 2787883003: [ServiceWorker] Add EmbeddedWorkerInstanceHost Interface. (Closed)
Patch Set: Refine code comments Created 3 years, 8 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/service_worker_dispatcher_host.h
diff --git a/content/browser/service_worker/service_worker_dispatcher_host.h b/content/browser/service_worker/service_worker_dispatcher_host.h
index cfa7045b513423bdfdee4cf789a8372c67d6903b..4615fb615484f16ca9141d973525e31c88c1eca9 100644
--- a/content/browser/service_worker/service_worker_dispatcher_host.h
+++ b/content/browser/service_worker/service_worker_dispatcher_host.h
@@ -22,7 +22,6 @@
#include "mojo/public/cpp/bindings/associated_binding_set.h"
class GURL;
-struct EmbeddedWorkerHostMsg_ReportConsoleMessage_Params;
namespace url {
class Origin;
@@ -143,24 +142,7 @@ class CONTENT_EXPORT ServiceWorkerDispatcherHost
int provider_id,
int64_t registration_id,
const std::string& value);
- void OnWorkerReadyForInspection(int embedded_worker_id);
- void OnWorkerScriptLoaded(int embedded_worker_id);
- void OnWorkerThreadStarted(int embedded_worker_id,
- int thread_id,
- int provider_id);
- void OnWorkerScriptLoadFailed(int embedded_worker_id);
- void OnWorkerScriptEvaluated(int embedded_worker_id, bool success);
- void OnWorkerStarted(int embedded_worker_id);
- void OnWorkerStopped(int embedded_worker_id);
void OnCountFeature(int64_t version_id, uint32_t feature);
- void OnReportException(int embedded_worker_id,
- const base::string16& error_message,
- int line_number,
- int column_number,
- const GURL& source_url);
- void OnReportConsoleMessage(
- int embedded_worker_id,
- const EmbeddedWorkerHostMsg_ReportConsoleMessage_Params& params);
void OnIncrementServiceWorkerRefCount(int handle_id);
void OnDecrementServiceWorkerRefCount(int handle_id);
void OnIncrementRegistrationRefCount(int registration_handle_id);

Powered by Google App Engine
This is Rietveld 408576698