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

Unified Diff: chrome/renderer/chrome_content_renderer_client.h

Issue 1318643002: Pass the v8::Context through the willDestroyServiceWorkerContextOnWorkerThread event. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
Index: chrome/renderer/chrome_content_renderer_client.h
diff --git a/chrome/renderer/chrome_content_renderer_client.h b/chrome/renderer/chrome_content_renderer_client.h
index 26085dbd3f205b633cdd97fcdbd615517e9a46ba..265135a8027616f2281b70790732c7d452dae2cd 100644
--- a/chrome/renderer/chrome_content_renderer_client.h
+++ b/chrome/renderer/chrome_content_renderer_client.h
@@ -158,7 +158,9 @@ class ChromeContentRendererClient : public content::ContentRendererClient {
void DidInitializeServiceWorkerContextOnWorkerThread(
v8::Local<v8::Context> context,
const GURL& url) override;
- void WillDestroyServiceWorkerContextOnWorkerThread(const GURL& url) override;
+ void WillDestroyServiceWorkerContextOnWorkerThread(
+ v8::Local<v8::Context> context,
+ const GURL& url) override;
#if defined(ENABLE_EXTENSIONS)
// Takes ownership.
void SetExtensionDispatcherForTest(

Powered by Google App Engine
This is Rietveld 408576698