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

Side by Side Diff: chrome/browser/policy/configuration_policy_provider_delegate_win.h

Issue 10491013: Implement the windows policy provider based on the AsyncPolicyLoader. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Addressed comment 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 #ifndef CHROME_BROWSER_POLICY_CONFIGURATION_POLICY_PROVIDER_DELEGATE_WIN_H_
6 #define CHROME_BROWSER_POLICY_CONFIGURATION_POLICY_PROVIDER_DELEGATE_WIN_H_
7 #pragma once
8
9 #include "base/string16.h"
10 #include "chrome/browser/policy/asynchronous_policy_provider.h"
11
12 namespace policy {
13
14 class ConfigurationPolicyProviderDelegateWin
15 : public AsynchronousPolicyProvider::Delegate {
16 public:
17 explicit ConfigurationPolicyProviderDelegateWin(
18 const PolicyDefinitionList* policy_definition_list);
19 virtual ~ConfigurationPolicyProviderDelegateWin() {}
20
21 // AsynchronousPolicyProvider::Delegate overrides:
22 virtual scoped_ptr<PolicyBundle> Load() OVERRIDE;
23
24 private:
25 const PolicyDefinitionList* policy_definition_list_;
26
27 DISALLOW_COPY_AND_ASSIGN(ConfigurationPolicyProviderDelegateWin);
28 };
29
30 } // namespace policy
31
32 #endif // CHROME_BROWSER_POLICY_CONFIGURATION_POLICY_PROVIDER_DELEGATE_WIN_H_
OLDNEW
« no previous file with comments | « chrome/browser/policy/configuration_policy_loader_win.cc ('k') | chrome/browser/policy/configuration_policy_provider_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698