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

Unified Diff: content/public/browser/render_process_host.h

Issue 2312633002: For debugging, split worker ref count into service worker and shared worker counts (Closed)
Patch Set: size_t Created 4 years, 3 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 | « content/browser/site_per_process_browsertest.cc ('k') | content/public/test/mock_render_process_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/render_process_host.h
diff --git a/content/public/browser/render_process_host.h b/content/public/browser/render_process_host.h
index de2843d4f796f29416cb0b0fa51a550588773de1..47a31a45b0ed358642ef2b3eab079db44ef228ea 100644
--- a/content/public/browser/render_process_host.h
+++ b/content/public/browser/render_process_host.h
@@ -303,8 +303,10 @@ class CONTENT_EXPORT RenderProcessHost : public IPC::Sender,
// Called when the existence of the other renderer process which is connected
// to the Worker in this renderer process has changed.
- virtual void IncrementWorkerRefCount() = 0;
- virtual void DecrementWorkerRefCount() = 0;
+ virtual void IncrementServiceWorkerRefCount() = 0;
+ virtual void DecrementServiceWorkerRefCount() = 0;
+ virtual void IncrementSharedWorkerRefCount() = 0;
+ virtual void DecrementSharedWorkerRefCount() = 0;
// Purges and suspends the renderer process.
virtual void PurgeAndSuspend() = 0;
« no previous file with comments | « content/browser/site_per_process_browsertest.cc ('k') | content/public/test/mock_render_process_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698