Index: content/renderer/stats_collection_controller.h |
diff --git a/content/renderer/stats_collection_controller.h b/content/renderer/stats_collection_controller.h |
index 63175d830a9ca883f0a751fc81822dd436c350c2..014e454da7f89bc99f2cf7117b5fddff85a5bd73 100644 |
--- a/content/renderer/stats_collection_controller.h |
+++ b/content/renderer/stats_collection_controller.h |
@@ -5,8 +5,8 @@ |
#ifndef CONTENT_RENDERER_STATS_COLLECTION_CONTROLLER_H_ |
#define CONTENT_RENDERER_STATS_COLLECTION_CONTROLLER_H_ |
+#include "content/renderer/cpp_bound_class.h" |
#include "ipc/ipc_sender.h" |
-#include "webkit/renderer/cpp_bound_class.h" |
namespace content { |
@@ -14,7 +14,7 @@ namespace content { |
// 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 { |
+class StatsCollectionController : public CppBoundClass { |
public: |
StatsCollectionController(); |
@@ -23,17 +23,15 @@ class StatsCollectionController : public webkit_glue::CppBoundClass { |
} |
// Retrieves a histogram and returns a JSON representation of it. |
- void GetHistogram(const webkit_glue::CppArgumentList& args, |
- webkit_glue::CppVariant* result); |
+ void GetHistogram(const CppArgumentList& args, 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); |
+ void GetBrowserHistogram(const CppArgumentList& args, CppVariant* result); |
// Returns JSON representation of tab timing information for the current tab. |
- void GetTabLoadTiming(const webkit_glue::CppArgumentList& args, |
- webkit_glue::CppVariant* result); |
+ void GetTabLoadTiming(const CppArgumentList& args, CppVariant* result); |
+ |
private: |
IPC::Sender* sender_; |
}; |