| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef COMPONENTS_POLICY_CORE_COMMON_CLOUD_POLICY_HEADER_SERVICE_H_ | 5 #ifndef COMPONENTS_POLICY_CORE_COMMON_CLOUD_POLICY_HEADER_SERVICE_H_ |
| 6 #define COMPONENTS_POLICY_CORE_COMMON_CLOUD_POLICY_HEADER_SERVICE_H_ | 6 #define COMPONENTS_POLICY_CORE_COMMON_CLOUD_POLICY_HEADER_SERVICE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 | 37 |
| 38 // Creates a PolicyHeaderIOHelper object to be run on the IO thread and | 38 // Creates a PolicyHeaderIOHelper object to be run on the IO thread and |
| 39 // add policy headers to outgoing requests. The caller takes ownership of | 39 // add policy headers to outgoing requests. The caller takes ownership of |
| 40 // this object and must ensure it outlives ProfileHeaderService (in practice, | 40 // this object and must ensure it outlives ProfileHeaderService (in practice, |
| 41 // this is called by ProfileIOData, which is shutdown *after* all | 41 // this is called by ProfileIOData, which is shutdown *after* all |
| 42 // ProfileKeyedServices are shutdown). | 42 // ProfileKeyedServices are shutdown). |
| 43 scoped_ptr<PolicyHeaderIOHelper> CreatePolicyHeaderIOHelper( | 43 scoped_ptr<PolicyHeaderIOHelper> CreatePolicyHeaderIOHelper( |
| 44 scoped_refptr<base::SequencedTaskRunner> task_runner); | 44 scoped_refptr<base::SequencedTaskRunner> task_runner); |
| 45 | 45 |
| 46 // Overridden CloudPolicyStore::Observer methods: | 46 // Overridden CloudPolicyStore::Observer methods: |
| 47 virtual void OnStoreLoaded(CloudPolicyStore* store) OVERRIDE; | 47 virtual void OnStoreLoaded(CloudPolicyStore* store) override; |
| 48 virtual void OnStoreError(CloudPolicyStore* store) OVERRIDE; | 48 virtual void OnStoreError(CloudPolicyStore* store) override; |
| 49 | 49 |
| 50 // Returns a list of all PolicyHeaderIOHelpers created by this object. | 50 // Returns a list of all PolicyHeaderIOHelpers created by this object. |
| 51 std::vector<PolicyHeaderIOHelper*> GetHelpersForTest(); | 51 std::vector<PolicyHeaderIOHelper*> GetHelpersForTest(); |
| 52 | 52 |
| 53 private: | 53 private: |
| 54 // Generate a policy header based on the currently loaded policy. | 54 // Generate a policy header based on the currently loaded policy. |
| 55 std::string CreateHeaderValue(); | 55 std::string CreateHeaderValue(); |
| 56 | 56 |
| 57 // Weak pointer to created PolicyHeaderIOHelper objects. | 57 // Weak pointer to created PolicyHeaderIOHelper objects. |
| 58 std::vector<PolicyHeaderIOHelper*> helpers_; | 58 std::vector<PolicyHeaderIOHelper*> helpers_; |
| 59 | 59 |
| 60 // URL of the policy server. | 60 // URL of the policy server. |
| 61 std::string server_url_; | 61 std::string server_url_; |
| 62 | 62 |
| 63 // Identifier for the verification key this Chrome instance is using. | 63 // Identifier for the verification key this Chrome instance is using. |
| 64 std::string verification_key_hash_; | 64 std::string verification_key_hash_; |
| 65 | 65 |
| 66 // Weak pointers to User-/Device-level policy stores. | 66 // Weak pointers to User-/Device-level policy stores. |
| 67 CloudPolicyStore* user_policy_store_; | 67 CloudPolicyStore* user_policy_store_; |
| 68 CloudPolicyStore* device_policy_store_; | 68 CloudPolicyStore* device_policy_store_; |
| 69 | 69 |
| 70 DISALLOW_COPY_AND_ASSIGN(PolicyHeaderService); | 70 DISALLOW_COPY_AND_ASSIGN(PolicyHeaderService); |
| 71 }; | 71 }; |
| 72 | 72 |
| 73 } // namespace policy | 73 } // namespace policy |
| 74 | 74 |
| 75 #endif // COMPONENTS_POLICY_CORE_COMMON_CLOUD_POLICY_HEADER_SERVICE_H_ | 75 #endif // COMPONENTS_POLICY_CORE_COMMON_CLOUD_POLICY_HEADER_SERVICE_H_ |
| OLD | NEW |