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

Side by Side Diff: components/policy/core/common/cloud/policy_header_service.h

Issue 666133002: Standardize usage of virtual/override/final in components/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
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 15 matching lines...) Expand all
26 // TODO(atwilson): Move to components/policy once CloudPolicyStore is moved. 26 // TODO(atwilson): Move to components/policy once CloudPolicyStore is moved.
27 class POLICY_EXPORT PolicyHeaderService : public CloudPolicyStore::Observer { 27 class POLICY_EXPORT PolicyHeaderService : public CloudPolicyStore::Observer {
28 public: 28 public:
29 // |device_policy_store| can be null on platforms that do not support 29 // |device_policy_store| can be null on platforms that do not support
30 // device policy. Both |user_policy_store| and |device_policy_store| must 30 // device policy. Both |user_policy_store| and |device_policy_store| must
31 // outlive this object. 31 // outlive this object.
32 PolicyHeaderService(const std::string& server_url, 32 PolicyHeaderService(const std::string& server_url,
33 const std::string& verification_key_hash, 33 const std::string& verification_key_hash,
34 CloudPolicyStore* user_policy_store, 34 CloudPolicyStore* user_policy_store,
35 CloudPolicyStore* device_policy_store); 35 CloudPolicyStore* device_policy_store);
36 virtual ~PolicyHeaderService(); 36 ~PolicyHeaderService() override;
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 void OnStoreLoaded(CloudPolicyStore* store) override;
48 virtual void OnStoreError(CloudPolicyStore* store) override; 48 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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698