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

Unified Diff: content/renderer/render_view_impl.h

Issue 12389073: Collect tab timing information for use in telementry-based startup tests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: formatting/compile fix Created 7 years, 9 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/renderer/render_view_impl.h
diff --git a/content/renderer/render_view_impl.h b/content/renderer/render_view_impl.h
index a621fab1c29977bbe3751930409f03ca48b84a71..825433ae5649a1801cbf3372c23b25bd09003b85 100644
--- a/content/renderer/render_view_impl.h
+++ b/content/renderer/render_view_impl.h
@@ -167,6 +167,7 @@ class RendererPpapiHost;
class RendererWebColorChooserImpl;
class RenderWidgetFullscreenPepper;
class SpeechRecognitionDispatcher;
+class StatsCollectionExtension;
class WebPluginDelegateProxy;
struct CustomContextMenuContext;
struct FaviconURL;
@@ -1533,6 +1534,10 @@ class CONTENT_EXPORT RenderViewImpl
// DOM automation bindings are enabled.
scoped_ptr<DomAutomationController> dom_automation_controller_;
+ // Allows JS to read out a variety of internal various metrics. The JS object
+ // is only exposed when the stats collection bindings are enabled.
+ scoped_ptr<StatsCollectionExtension> stats_collection_extension_;
+
// Boolean indicating whether we are in the process of creating the frame
// tree for this renderer in response to ViewMsg_UpdateFrameTree. If true,
// we won't be sending ViewHostMsg_FrameTreeUpdated messages back to the

Powered by Google App Engine
This is Rietveld 408576698