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

Side by Side Diff: ios/chrome/browser/application_context_impl.h

Issue 2893943004: Refactor UKM interface for mojo-ification (Closed)
Patch Set: Fixed contextualsearch Created 3 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef IOS_CHROME_BROWSER_APPLICATION_CONTEXT_IMPL_H_ 5 #ifndef IOS_CHROME_BROWSER_APPLICATION_CONTEXT_IMPL_H_
6 #define IOS_CHROME_BROWSER_APPLICATION_CONTEXT_IMPL_H_ 6 #define IOS_CHROME_BROWSER_APPLICATION_CONTEXT_IMPL_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 10
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 void OnAppEnterForeground() override; 43 void OnAppEnterForeground() override;
44 void OnAppEnterBackground() override; 44 void OnAppEnterBackground() override;
45 bool WasLastShutdownClean() override; 45 bool WasLastShutdownClean() override;
46 PrefService* GetLocalState() override; 46 PrefService* GetLocalState() override;
47 net::URLRequestContextGetter* GetSystemURLRequestContext() override; 47 net::URLRequestContextGetter* GetSystemURLRequestContext() override;
48 const std::string& GetApplicationLocale() override; 48 const std::string& GetApplicationLocale() override;
49 ios::ChromeBrowserStateManager* GetChromeBrowserStateManager() override; 49 ios::ChromeBrowserStateManager* GetChromeBrowserStateManager() override;
50 metrics_services_manager::MetricsServicesManager* GetMetricsServicesManager() 50 metrics_services_manager::MetricsServicesManager* GetMetricsServicesManager()
51 override; 51 override;
52 metrics::MetricsService* GetMetricsService() override; 52 metrics::MetricsService* GetMetricsService() override;
53 ukm::UkmService* GetUkmService() override; 53 ukm::UkmRecorder* GetUkmRecorder() override;
54 variations::VariationsService* GetVariationsService() override; 54 variations::VariationsService* GetVariationsService() override;
55 rappor::RapporServiceImpl* GetRapporServiceImpl() override; 55 rappor::RapporServiceImpl* GetRapporServiceImpl() override;
56 net_log::ChromeNetLog* GetNetLog() override; 56 net_log::ChromeNetLog* GetNetLog() override;
57 network_time::NetworkTimeTracker* GetNetworkTimeTracker() override; 57 network_time::NetworkTimeTracker* GetNetworkTimeTracker() override;
58 IOSChromeIOThread* GetIOSChromeIOThread() override; 58 IOSChromeIOThread* GetIOSChromeIOThread() override;
59 gcm::GCMDriver* GetGCMDriver() override; 59 gcm::GCMDriver* GetGCMDriver() override;
60 component_updater::ComponentUpdateService* GetComponentUpdateService() 60 component_updater::ComponentUpdateService* GetComponentUpdateService()
61 override; 61 override;
62 CRLSetFetcher* GetCRLSetFetcher() override; 62 CRLSetFetcher* GetCRLSetFetcher() override;
63 physical_web::PhysicalWebDataSource* GetPhysicalWebDataSource() override; 63 physical_web::PhysicalWebDataSource* GetPhysicalWebDataSource() override;
(...skipping 26 matching lines...) Expand all
90 // Sequenced task runner for local state related I/O tasks. 90 // Sequenced task runner for local state related I/O tasks.
91 const scoped_refptr<base::SequencedTaskRunner> local_state_task_runner_; 91 const scoped_refptr<base::SequencedTaskRunner> local_state_task_runner_;
92 92
93 bool was_last_shutdown_clean_; 93 bool was_last_shutdown_clean_;
94 bool created_local_state_; 94 bool created_local_state_;
95 95
96 DISALLOW_COPY_AND_ASSIGN(ApplicationContextImpl); 96 DISALLOW_COPY_AND_ASSIGN(ApplicationContextImpl);
97 }; 97 };
98 98
99 #endif // IOS_CHROME_BROWSER_APPLICATION_CONTEXT_IMPL_H_ 99 #endif // IOS_CHROME_BROWSER_APPLICATION_CONTEXT_IMPL_H_
OLDNEW
« no previous file with comments | « ios/chrome/browser/application_context.h ('k') | ios/chrome/browser/application_context_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698