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

Unified Diff: chrome/browser/policy/profile_policy_context.cc

Issue 6520008: Device policy infrastructure (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix nits Created 9 years, 10 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/policy/profile_policy_context.cc
diff --git a/chrome/browser/policy/profile_policy_context.cc b/chrome/browser/policy/profile_policy_context.cc
deleted file mode 100644
index b8e3151ab4fbc00a45d70476392dd9f28ae59eea..0000000000000000000000000000000000000000
--- a/chrome/browser/policy/profile_policy_context.cc
+++ /dev/null
@@ -1,96 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include <algorithm>
-#include <string>
-
-#include "base/command_line.h"
-#include "chrome/browser/policy/configuration_policy_pref_store.h"
-#include "chrome/browser/policy/device_management_policy_provider.h"
-#include "chrome/browser/policy/device_management_service.h"
-#include "chrome/browser/policy/profile_policy_context.h"
-#include "chrome/browser/prefs/pref_service.h"
-#include "chrome/browser/profiles/profile.h"
-#include "chrome/common/chrome_switches.h"
-#include "chrome/common/notification_details.h"
-#include "chrome/common/notification_source.h"
-#include "chrome/common/pref_names.h"
-
-namespace {
-
-// Refresh rate sanity interval bounds.
-const int64 kPolicyRefreshRateMinMs = 30 * 60 * 1000; // 30 minutes
-const int64 kPolicyRefreshRateMaxMs = 24 * 60 * 60 * 1000; // 1 day
-
-} // namespace
-
-namespace policy {
-
-ProfilePolicyContext::ProfilePolicyContext(Profile* profile)
- : profile_(profile) {
- CommandLine* command_line = CommandLine::ForCurrentProcess();
- if (command_line->HasSwitch(switches::kDeviceManagementUrl)) {
- device_management_service_.reset(new DeviceManagementService(
- command_line->GetSwitchValueASCII(switches::kDeviceManagementUrl)));
- device_management_policy_provider_.reset(
- new policy::DeviceManagementPolicyProvider(
- ConfigurationPolicyPrefStore::GetChromePolicyDefinitionList(),
- device_management_service_->CreateBackend(),
- profile_));
- }
-}
-
-ProfilePolicyContext::~ProfilePolicyContext() {
- device_management_policy_provider_.reset();
- device_management_service_.reset();
-}
-
-void ProfilePolicyContext::Initialize() {
- if (device_management_service_.get())
- device_management_service_->Initialize(profile_->GetRequestContext());
-
- policy_refresh_rate_.Init(prefs::kPolicyRefreshRate, profile_->GetPrefs(),
- this);
- UpdatePolicyRefreshRate();
-}
-
-void ProfilePolicyContext::Shutdown() {
- if (device_management_service_.get())
- device_management_service_->Shutdown();
-}
-
-DeviceManagementPolicyProvider*
-ProfilePolicyContext::GetDeviceManagementPolicyProvider() {
- return device_management_policy_provider_.get();
-}
-
-// static
-void ProfilePolicyContext::RegisterUserPrefs(PrefService* user_prefs) {
- user_prefs->RegisterIntegerPref(prefs::kPolicyRefreshRate,
- kDefaultPolicyRefreshRateInMilliseconds);
-}
-
-void ProfilePolicyContext::UpdatePolicyRefreshRate() {
- if (device_management_policy_provider_.get()) {
- // Clamp to sane values.
- int64 refresh_rate = policy_refresh_rate_.GetValue();
- refresh_rate = std::max(kPolicyRefreshRateMinMs, refresh_rate);
- refresh_rate = std::min(kPolicyRefreshRateMaxMs, refresh_rate);
- device_management_policy_provider_->SetRefreshRate(refresh_rate);
- }
-}
-
-void ProfilePolicyContext::Observe(NotificationType type,
- const NotificationSource& source,
- const NotificationDetails& details) {
- if (type == NotificationType::PREF_CHANGED &&
- prefs::kPolicyRefreshRate == *(Details<std::string>(details).ptr()) &&
- profile_->GetPrefs() == Source<PrefService>(source).ptr()) {
- UpdatePolicyRefreshRate();
- } else {
- NOTREACHED();
- }
-}
-
-} // namespace policy

Powered by Google App Engine
This is Rietveld 408576698