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

Unified Diff: chrome/browser/browser_process_impl.h

Issue 1226643002: Welcome page changes for Windows 10 and over. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: simplified recording of welcome run complete Created 5 years, 5 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: chrome/browser/browser_process_impl.h
diff --git a/chrome/browser/browser_process_impl.h b/chrome/browser/browser_process_impl.h
index 6c1595c17e618140acb2f0045db8805139a314ce..288f24a8ab2071f584fcabcd771714eeedbefed6 100644
--- a/chrome/browser/browser_process_impl.h
+++ b/chrome/browser/browser_process_impl.h
@@ -140,6 +140,8 @@ class BrowserProcessImpl : public BrowserProcess,
network_time::NetworkTimeTracker* network_time_tracker() override;
gcm::GCMDriver* gcm_driver() override;
memory::OomPriorityManager* GetOomPriorityManager() override;
+ ShellIntegration::DefaultWebClientState CachedDefaultWebClientState()
+ override;
static void RegisterPrefs(PrefRegistrySimple* registry);
@@ -164,6 +166,8 @@ class BrowserProcessImpl : public BrowserProcess,
void ApplyDefaultBrowserPolicy();
void ApplyMetricsReportingPolicy();
+ void CacheDefaultWebClientState();
+
scoped_ptr<MetricsServicesManager> metrics_services_manager_;
scoped_ptr<IOThread> io_thread_;
@@ -313,6 +317,8 @@ class BrowserProcessImpl : public BrowserProcess,
scoped_ptr<memory::OomPriorityManager> oom_priority_manager_;
#endif
+ ShellIntegration::DefaultWebClientState cached_default_web_client_state_;
+
DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl);
};

Powered by Google App Engine
This is Rietveld 408576698