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

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

Issue 176843004: Add IncrementWorkerRefCount() and DecrementWorkerRefCount() to RenderProcessHostImpl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 10 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/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 a259f6db667330c28729c7bea8657022b998e16c..356aa07bce3cf087fa2cd7f783ced37d98c88b51 100644
--- a/content/public/browser/render_process_host.h
+++ b/content/public/browser/render_process_host.h
@@ -228,6 +228,11 @@ class CONTENT_EXPORT RenderProcessHost : public IPC::Sender,
// transferring it to a new renderer process.
virtual void ResumeDeferredNavigation(const GlobalRequestID& request_id) = 0;
+ // Called when the existance of the other renderer process which is connected
+ // to the SharedWorker in this renderer process has changed.
+ // It is only called when "enable-embedded-shared-worker" flag is set.
+ virtual void SetExternalClientStatus(bool has_external_worker_client) = 0;
kinuko 2014/03/04 04:48:48 Does this need to be exposed at content/public? T
horo 2014/03/04 06:40:43 Changed to RenderProcessHostImpl::SetHasExternalWo
kinuko 2014/03/04 06:58:46 (As we talked offline) If this is specifically for
+
// Static management functions -----------------------------------------------
// Flag to run the renderer in process. This is primarily
« no previous file with comments | « content/browser/renderer_host/render_process_host_impl.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