Index: chrome/browser/browser_process_impl.h |
diff --git a/chrome/browser/browser_process_impl.h b/chrome/browser/browser_process_impl.h |
index 93dc0f4869da70090308ac92c2a2ff65846dd77d..6ed21db98d628b7f80ffca3352c491839294d0c1 100644 |
--- a/chrome/browser/browser_process_impl.h |
+++ b/chrome/browser/browser_process_impl.h |
@@ -68,6 +68,7 @@ class BrowserProcessImpl : public BrowserProcess, |
virtual PrefService* local_state() OVERRIDE; |
virtual ui::Clipboard* clipboard() OVERRIDE; |
virtual net::URLRequestContextGetter* system_request_context() OVERRIDE; |
+ virtual VariationsService* variations_service() OVERRIDE; |
#if defined(OS_CHROMEOS) |
virtual chromeos::OomPriorityManager* oom_priority_manager() OVERRIDE; |
#endif // defined(OS_CHROMEOS) |
@@ -129,6 +130,7 @@ class BrowserProcessImpl : public BrowserProcess, |
void CreateProfileManager(); |
void CreateWebDataService(); |
void CreateLocalState(); |
+ void CreateVariationsService(); |
void CreateViewedPageTracker(); |
void CreateIconManager(); |
void CreateIntranetRedirectDetector(); |
@@ -181,6 +183,9 @@ class BrowserProcessImpl : public BrowserProcess, |
scoped_ptr<ui::Clipboard> clipboard_; |
+ bool created_variations_service_; |
+ scoped_ptr<VariationsService> variations_service_; |
+ |
// Manager for desktop notification UI. |
bool created_notification_ui_manager_; |
scoped_ptr<NotificationUIManager> notification_ui_manager_; |