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

Unified Diff: chrome/browser/browser_process.h

Issue 502173002: Move more metrics classes to metrics namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix unit test compile. Created 6 years, 4 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
« no previous file with comments | « base/threading/thread_restrictions.h ('k') | chrome/browser/browser_process_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browser_process.h
diff --git a/chrome/browser/browser_process.h b/chrome/browser/browser_process.h
index fefc63f650c9933cf51b2da1a8965b2d1f59276a..df2ad5ea9106dee776ef9ffad002660a7101264a 100644
--- a/chrome/browser/browser_process.h
+++ b/chrome/browser/browser_process.h
@@ -28,7 +28,6 @@ class IconManager;
class IntranetRedirectDetector;
class IOThread;
class MediaFileSystemRegistry;
-class MetricsService;
class MetricsServicesManager;
class NotificationUIManager;
class PrefRegistrySimple;
@@ -63,6 +62,10 @@ namespace message_center {
class MessageCenter;
}
+namespace metrics {
+class MetricsService;
+}
+
namespace net {
class URLRequestContextGetter;
}
@@ -115,7 +118,7 @@ class BrowserProcess {
virtual MetricsServicesManager* GetMetricsServicesManager() = 0;
// Services: any of these getters may return NULL
- virtual MetricsService* metrics_service() = 0;
+ virtual metrics::MetricsService* metrics_service() = 0;
virtual rappor::RapporService* rappor_service() = 0;
virtual ProfileManager* profile_manager() = 0;
virtual PrefService* local_state() = 0;
« no previous file with comments | « base/threading/thread_restrictions.h ('k') | chrome/browser/browser_process_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698