Chromium Code Reviews| Index: chrome/browser/policy/async_policy_provider.h |
| diff --git a/chrome/browser/policy/async_policy_provider.h b/chrome/browser/policy/async_policy_provider.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..4e4cedf14f52c119e738cb5e0a9f0a584be48d01 |
| --- /dev/null |
| +++ b/chrome/browser/policy/async_policy_provider.h |
| @@ -0,0 +1,62 @@ |
| +// Copyright (c) 2012 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. |
| + |
| +#ifndef CHROME_BROWSER_POLICY_ASYNC_POLICY_PROVIDER_H_ |
| +#define CHROME_BROWSER_POLICY_ASYNC_POLICY_PROVIDER_H_ |
| +#pragma once |
| + |
| +#include "base/cancelable_callback.h" |
| +#include "base/memory/scoped_ptr.h" |
| +#include "base/memory/weak_ptr.h" |
| +#include "base/threading/non_thread_safe.h" |
| +#include "chrome/browser/policy/configuration_policy_provider.h" |
| + |
| +namespace policy { |
| + |
| +class AsyncPolicyLoader; |
| +class PolicyBundle; |
| + |
| +// A policy provider that loads its policies asynchronously on the FILE thread. |
| +// Platform-specific providers are created by passing an implementation of |
| +// AsyncPolicyLoader to a new AsyncPolicyProvider. |
| +class AsyncPolicyProvider : public ConfigurationPolicyProvider, |
| + public base::NonThreadSafe { |
| + public: |
| + // Takes ownership of |loader|. |
|
Mattias Nissler (ping if slow)
2012/06/04 15:25:39
no need for the ownership comment.
Joao da Silva
2012/06/04 17:28:12
Done.
|
| + AsyncPolicyProvider(const PolicyDefinitionList* policy_list, |
| + scoped_ptr<AsyncPolicyLoader> loader); |
| + virtual ~AsyncPolicyProvider(); |
| + |
| + // ConfigurationPolicyProvider implementation. |
| + virtual void RefreshPolicies() OVERRIDE; |
| + |
| + private: |
| + // Resumes initialization once the loops are spinning. |
| + void InitWithLoopsReady(); |
| + |
| + // Helper for RefreshPolicies(). |
| + void ReloadAfterRefreshSync(); |
| + |
| + // Invoked with the latest bundle loaded by the |loader_|. |
| + void OnLoaderReloaded(scoped_ptr<PolicyBundle> bundle); |
| + |
| + // The |loader_| that does the platform-specific policy loading. It lives |
| + // on the FILE thread, and always outlives |this|. |
| + AsyncPolicyLoader* loader_; |
| + |
| + // Used to get a WeakPtr to |this| for the update callback given to the |
| + // loader. |
| + base::WeakPtrFactory<AsyncPolicyProvider> weak_factory_; |
| + |
| + // Callback used to synchronize RefreshPolicies() calls with the FILE thread. |
| + // See the implementation for the details. |
| + base::CancelableClosure refresh_callback_; |
| + |
|
Mattias Nissler (ping if slow)
2012/06/04 15:25:39
excess blank line
Joao da Silva
2012/06/04 17:28:12
Done.
|
| + |
| + DISALLOW_COPY_AND_ASSIGN(AsyncPolicyProvider); |
| +}; |
| + |
| +} // namespace policy |
| + |
| +#endif // CHROME_BROWSER_POLICY_ASYNC_POLICY_PROVIDER_H_ |