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

Unified Diff: content/renderer/stats_collection_controller.h

Issue 25378002: Move the rest of source files from webkit/renderer to content/renderer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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/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_;
};

Powered by Google App Engine
This is Rietveld 408576698