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

Side by Side Diff: chrome/browser/policy/file_based_policy_provider.cc

Issue 10500013: Delete old policy code after AsyncPolicyLoader refactor. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: rebased Created 8 years, 6 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
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/browser/policy/file_based_policy_provider.h"
6
7 #include "chrome/browser/policy/file_based_policy_loader.h"
8
9 namespace policy {
10
11 FileBasedPolicyProvider::ProviderDelegate::ProviderDelegate(
12 const FilePath& config_file_path)
13 : config_file_path_(config_file_path) {}
14
15 FileBasedPolicyProvider::ProviderDelegate::~ProviderDelegate() {}
16
17 FileBasedPolicyProvider::FileBasedPolicyProvider(
18 const PolicyDefinitionList* policy_list,
19 FileBasedPolicyProvider::ProviderDelegate* delegate)
20 : AsynchronousPolicyProvider(
21 policy_list,
22 new FileBasedPolicyLoader(delegate)) {}
23
24 } // namespace policy
OLDNEW
« no previous file with comments | « chrome/browser/policy/file_based_policy_provider.h ('k') | chrome/browser/policy/file_based_policy_provider_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698