diff options
author | jar@chromium.org <jar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-02 00:46:41 +0000 |
---|---|---|
committer | jar@chromium.org <jar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-02 00:46:41 +0000 |
commit | 1f4fc8e8c3423981f1046fa078046b8385b77925 (patch) | |
tree | bf593f339b2caada9179eeebba2727dce6ee80f7 /base/histogram.h | |
parent | d7a3e8ec24958958db28dba44542a2c126d94e88 (diff) | |
download | chromium_src-1f4fc8e8c3423981f1046fa078046b8385b77925.zip chromium_src-1f4fc8e8c3423981f1046fa078046b8385b77925.tar.gz chromium_src-1f4fc8e8c3423981f1046fa078046b8385b77925.tar.bz2 |
Upload renderer histograms to browser after a page loads
WARNING: We need to watch the perf charts when this lands to be
sure that it doesn't cause a regression.
Since there is no finalizer for a renderer, and some renderers
are just terminated with no warning, the only way to get
consistent page data is to send it to the browser after
each page loads. That is the bulk of this change.
I also fixed up a few nits relating to making this work
in single process mode.
BUG=16495
r=raman.tenneti
Review URL: http://codereview.chromium.org/515072
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@35431 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/histogram.h')
-rw-r--r-- | base/histogram.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/base/histogram.h b/base/histogram.h index 6e415a0..f16dde0 100644 --- a/base/histogram.h +++ b/base/histogram.h @@ -554,10 +554,6 @@ class StatisticsRecorder { // Method for extracting histograms which were marked for use by UMA. static void GetHistograms(Histograms* output); - // Method for extracting histograms for renderer and the histogram's flag is - // set to kIPCSerializationSourceFlag. - static void GetHistogramsForRenderer(Histograms* output); - // Find a histogram by name. It matches the exact name. This method is thread // safe. static bool FindHistogram(const std::string& query, |