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

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

Issue 633083002: Changes PlzNavitate histograms to try and simplify their multi-modal characteristic. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Discounting time spent on beforeunload, created navigation metrics data class and updated histograms.xml. Created 6 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
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 c1b5c47e1d2fd5b38f90dab5febc685e76c0a7a9..e55098d01a4016b5db1a8ba346c8e0e05ca7c2f0 100644
--- a/content/public/browser/render_process_host.h
+++ b/content/public/browser/render_process_host.h
@@ -20,6 +20,7 @@ struct ViewMsg_SwapOut_Params;
namespace base {
class TimeDelta;
+class TimeTicks;
}
namespace content {
@@ -229,6 +230,10 @@ class CONTENT_EXPORT RenderProcessHost : public IPC::Sender,
// Returns the ServiceRegistry for this process.
virtual ServiceRegistry* GetServiceRegistry() = 0;
+ // The time at which the first call to Init happened and the child renderer
+ // process was created.
+ virtual const base::TimeTicks& GetInitTime() const = 0;
nasko 2014/10/08 17:10:42 Methods that are only used within content/ don't n
carlosk 2014/10/09 16:53:45 Done.
+
// Static management functions -----------------------------------------------
// Flag to run the renderer in process. This is primarily

Powered by Google App Engine
This is Rietveld 408576698