| 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
|
|
|