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

Unified Diff: chrome/browser/browser_process_impl.h

Issue 10916235: Record policy usage statistics every 24 hours. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Updated comment Created 8 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: chrome/browser/browser_process_impl.h
diff --git a/chrome/browser/browser_process_impl.h b/chrome/browser/browser_process_impl.h
index 404db256e13952aa8e1e3bb2830ff0734bb5a484..d72c80c91d48bb202ca3fb6e3582a1b62fdffc78 100644
--- a/chrome/browser/browser_process_impl.h
+++ b/chrome/browser/browser_process_impl.h
@@ -31,6 +31,7 @@ class RemoteDebuggingServer;
namespace policy {
class BrowserPolicyConnector;
class PolicyService;
+class PolicyStatisticsCollector;
};
// Real implementation of BrowserProcess that creates and returns the services.
@@ -162,6 +163,10 @@ class BrowserProcessImpl : public BrowserProcess,
bool created_local_state_;
scoped_ptr<PrefService> local_state_;
+ // Must be destroyed before |local_state_| and |policy_statistics_collector_|.
Mattias Nissler (ping if slow) 2012/09/12 13:06:27 Doesn't make sense.
+ // Note that currently this is enforced by StartTearDown.
+ scoped_ptr<policy::PolicyStatisticsCollector> policy_statistics_collector_;
Joao da Silva 2012/09/12 13:29:38 Why doesn't this hang off the BrowserPolicyConnect
+
bool created_icon_manager_;
scoped_ptr<IconManager> icon_manager_;
« no previous file with comments | « no previous file | chrome/browser/browser_process_impl.cc » ('j') | chrome/browser/policy/policy_statistics_collector.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698