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

Unified Diff: extensions/renderer/dispatcher.h

Issue 2166523003: Add ref count to service workers for extension API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sync@tott Created 4 years, 2 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
« no previous file with comments | « extensions/common/extension_messages.h ('k') | extensions/renderer/dispatcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/renderer/dispatcher.h
diff --git a/extensions/renderer/dispatcher.h b/extensions/renderer/dispatcher.h
index b592b075de6bc2605e0952f64376656c17a5e780..b960bef335a44d0aa817cb4de856cf3510e0fe5d 100644
--- a/extensions/renderer/dispatcher.h
+++ b/extensions/renderer/dispatcher.h
@@ -102,7 +102,7 @@ class Dispatcher : public content::RenderThreadObserver,
// variables.
void DidInitializeServiceWorkerContextOnWorkerThread(
v8::Local<v8::Context> v8_context,
- int embedded_worker_id,
+ int64_t service_worker_version_id,
const GURL& url);
void WillReleaseScriptContext(blink::WebLocalFrame* frame,
@@ -112,7 +112,7 @@ class Dispatcher : public content::RenderThreadObserver,
// Runs on a different thread and should not use any member variables.
static void WillDestroyServiceWorkerContextOnWorkerThread(
v8::Local<v8::Context> v8_context,
- int embedded_worker_id,
+ int64_t service_worker_version_id,
const GURL& url);
// This method is not allowed to run JavaScript code in the frame.
« no previous file with comments | « extensions/common/extension_messages.h ('k') | extensions/renderer/dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698