summaryrefslogtreecommitdiffstats
path: root/content/renderer/stats_collection_controller.h
diff options
context:
space:
mode:
authorrtenneti@chromium.org <rtenneti@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-28 21:58:18 +0000
committerrtenneti@chromium.org <rtenneti@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-28 21:58:18 +0000
commitecaae0a04cad41f2bc59a2a5671d6f9cdf82de99 (patch)
tree37a78aa07506eaf4d3183a3e6bb47ac40bdb95ff /content/renderer/stats_collection_controller.h
parent4afc8d67c4d6491fe1e1d60d17fa6651e861e795 (diff)
downloadchromium_src-ecaae0a04cad41f2bc59a2a5671d6f9cdf82de99.zip
chromium_src-ecaae0a04cad41f2bc59a2a5671d6f9cdf82de99.tar.gz
chromium_src-ecaae0a04cad41f2bc59a2a5671d6f9cdf82de99.tar.bz2
Revert 202620 "Collect tab timing information for use in telemen..."
> 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 TBR=jeremy@chromium.org Review URL: https://codereview.chromium.org/16160006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202662 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/renderer/stats_collection_controller.h')
-rw-r--r--content/renderer/stats_collection_controller.h43
1 files changed, 0 insertions, 43 deletions
diff --git a/content/renderer/stats_collection_controller.h b/content/renderer/stats_collection_controller.h
deleted file mode 100644
index eb1ccb0..0000000
--- a/content/renderer/stats_collection_controller.h
+++ /dev/null
@@ -1,43 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CONTENT_RENDERER_STATS_COLLECTION_CONTROLLER_H_
-#define CONTENT_RENDERER_STATS_COLLECTION_CONTROLLER_H_
-
-#include "ipc/ipc_sender.h"
-#include "webkit/glue/cpp_bound_class.h"
-
-namespace content {
-
-// This class is exposed in JS as window.statsCollectionController and provides
-// functionality to read out statistics from the browser.
-// Its use must be enabled specifically via the
-// --enable-stats-collection-bindings command line flag.
-class StatsCollectionController : public webkit_glue::CppBoundClass {
- public:
- StatsCollectionController();
-
- void set_message_sender(IPC::Sender* sender) {
- 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);
-
- // Returns JSON representation of tab timing information for the current tab.
- void GetTabLoadTiming(const webkit_glue::CppArgumentList& args,
- webkit_glue::CppVariant* result);
- private:
- IPC::Sender* sender_;
-};
-
-} // namespace content
-
-#endif // CONTENT_RENDERER_STATS_COLLECTION_CONTROLLER_H_