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

Unified Diff: content/public/renderer/render_thread.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: content/public/renderer/render_thread.h
===================================================================
--- content/public/renderer/render_thread.h (revision 139790)
+++ content/public/renderer/render_thread.h (working copy)
@@ -16,6 +16,10 @@
class MessageLoop;
+namespace base {
+class HistogramSender;
+}
+
namespace IPC {
class SyncChannel;
class SyncMessageFilter;
@@ -43,6 +47,7 @@
virtual IPC::SyncChannel* GetChannel() = 0;
virtual std::string GetLocale() = 0;
virtual IPC::SyncMessageFilter* GetSyncMessageFilter() = 0;
+ virtual base::HistogramSender* GetHistogramSender() = 0;
virtual scoped_refptr<base::MessageLoopProxy> GetIOMessageLoopProxy() = 0;
// Called to add or remove a listener for a particular message routing ID.

Powered by Google App Engine
This is Rietveld 408576698