summaryrefslogtreecommitdiffstats
path: root/content/renderer/dom_automation_controller.h
diff options
context:
space:
mode:
authorjeremy@chromium.org <jeremy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-28 19:11:40 +0000
committerjeremy@chromium.org <jeremy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-28 19:11:40 +0000
commit83b4f00b11ab81f02bbb6688efecdb0509cc418a (patch)
tree34a6e0521b1398087df9858e37b653c524dc7d85 /content/renderer/dom_automation_controller.h
parent8dcb6974c52af339c67e5a02ab1764b0378e72aa (diff)
downloadchromium_src-83b4f00b11ab81f02bbb6688efecdb0509cc418a.zip
chromium_src-83b4f00b11ab81f02bbb6688efecdb0509cc418a.tar.gz
chromium_src-83b4f00b11ab81f02bbb6688efecdb0509cc418a.tar.bz2
Collect tab timing information for use in telementry-based startup tests
Motivation: Data collection exposed in this CL is needed by upcoming startup tests we're writing using Telemtry. Expose a new window.statsCollectionController object to JS and move existing histogram reading code into it since that seemed misplaced in DOMAutomationController. Add a new --enable-stats-collection-bindings to activate said object. Example usage in telemtry: with browser.Create() as b: b.tabs[0].Navigate("http://www.google.com") b.tabs[0].WaitForDocumentReadyStateToBeComplete() print b.tabs[0].EvaluateJavaScript('statsCollectionController.tabLoadTiming()') BUG=None Review URL: https://chromiumcodereview.appspot.com/12389073 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202620 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/renderer/dom_automation_controller.h')
-rw-r--r--content/renderer/dom_automation_controller.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/content/renderer/dom_automation_controller.h b/content/renderer/dom_automation_controller.h
index b4fe4c0..1516eea 100644
--- a/content/renderer/dom_automation_controller.h
+++ b/content/renderer/dom_automation_controller.h
@@ -115,15 +115,6 @@ class DomAutomationController : public webkit_glue::CppBoundClass {
sender_ = sender;
}
- // Retrieves a histogram and returns a JSON representation of it.
- void GetHistogram(const webkit_glue::CppArgumentList& args,
- webkit_glue::CppVariant* result);
-
- // Retrieves a histogram from the browser process and returns a JSON
- // representation of it.
- void GetBrowserHistogram(const webkit_glue::CppArgumentList& args,
- webkit_glue::CppVariant* result);
-
private:
IPC::Sender* sender_;