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

Unified Diff: chrome/browser/browser_process_impl.cc

Issue 16254003: WIP (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/browser_process_impl.h ('k') | chrome/browser/chromeos/login/existing_user_controller.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browser_process_impl.cc
diff --git a/chrome/browser/browser_process_impl.cc b/chrome/browser/browser_process_impl.cc
index fba82ec5dca5bf0cc28f1c23abb1e52259f294bc..c11100bd98e2d94bd12ea640f093f9490ca37dd5 100644
--- a/chrome/browser/browser_process_impl.cc
+++ b/chrome/browser/browser_process_impl.cc
@@ -117,6 +117,7 @@
#if defined(OS_CHROMEOS)
#include "chrome/browser/chromeos/memory/oom_priority_manager.h"
+#include "chrome/browser/policy/policy_change_watcher.h"
#endif // defined(OS_CHROMEOS)
#if defined(ENABLE_PLUGIN_INSTALLATION)
@@ -622,6 +623,15 @@ BrowserProcessImpl::media_file_system_registry() {
return media_file_system_registry_.get();
}
+#if defined(OS_CHROMEOS)
+policy::DevicePolicyChangeWatcher*
+ BrowserProcessImpl::device_policy_change_watcher() {
+ if (!device_policy_change_watcher_)
+ device_policy_change_watcher_.reset(new policy::DevicePolicyChangeWatcher);
+ return device_policy_change_watcher_.get();
+}
+#endif
+
#if !defined(OS_WIN)
void BrowserProcessImpl::PlatformSpecificCommandLineProcessing(
const CommandLine& command_line) {
« no previous file with comments | « chrome/browser/browser_process_impl.h ('k') | chrome/browser/chromeos/login/existing_user_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698