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

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

Issue 2607513002: Remove Render.Workers.MaxWorkerCountInRendererProcess UMA. (Closed)
Patch Set: Created 4 years 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/renderer_host/render_process_host_impl.cc ('k') | tools/metrics/histograms/histograms.xml » ('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 3bdae8d874aca6a4e2f220c680ae9952a13a57a1..0477aa0861a93089e96c08a770ec8c847883d5e1 100644
--- a/content/public/browser/render_process_host.h
+++ b/content/public/browser/render_process_host.h
@@ -313,19 +313,17 @@ class CONTENT_EXPORT RenderProcessHost : public IPC::Sender,
virtual void IncrementServiceWorkerRefCount() = 0;
virtual void DecrementServiceWorkerRefCount() = 0;
- // Called when the existence of the other renderer process which is connected
- // to the Worker in this renderer process has changed.
-
- // The shared worker ref count is nonzero if any other process is connected to
- // a shared worker in this process, or a new shared worker is being created in
- // this process. IncrementSharedWorkerRefCount is called in two cases:
+ // The shared worker ref count is non-zero if any other process is connected
+ // to a shared worker in this process, or a new shared worker is being created
+ // in this process.
+ // IncrementSharedWorkerRefCount is called in two cases:
// - there was no external renderer connected to a shared worker in this
// process, and now there is at least one
// - a new worker is being created in this process.
// DecrementSharedWorkerRefCount is called in two cases:
// - there was an external renderer connected to a shared worker in this
// process, and now there is none
- // - a new worker finished being created in this process
+ // - a new worker finished being created in this process.
virtual void IncrementSharedWorkerRefCount() = 0;
virtual void DecrementSharedWorkerRefCount() = 0;
« no previous file with comments | « content/browser/renderer_host/render_process_host_impl.cc ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698