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

Unified Diff: chrome/renderer/page_load_histograms.h

Issue 10454086: Histograms - Support histograms for Plugins, GPU (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 7 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: chrome/renderer/page_load_histograms.h
===================================================================
--- chrome/renderer/page_load_histograms.h (revision 139790)
+++ chrome/renderer/page_load_histograms.h (working copy)
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 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.
@@ -12,12 +12,14 @@
class DocumentState;
}
-class RendererHistogramSnapshots;
+namespace base {
+class HistogramSender;
+}
class PageLoadHistograms : public content::RenderViewObserver {
public:
PageLoadHistograms(content::RenderView* render_view,
- RendererHistogramSnapshots* histogram_snapshots);
+ base::HistogramSender* histogram_sender);
private:
// RenderViewObserver implementation.
@@ -55,7 +57,7 @@
int cross_origin_access_count_;
int same_origin_access_count_;
- RendererHistogramSnapshots* histogram_snapshots_;
+ base::HistogramSender* histogram_sender_;
DISALLOW_COPY_AND_ASSIGN(PageLoadHistograms);
};

Powered by Google App Engine
This is Rietveld 408576698