OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_VARIATIONS_VARIATIONS_HTTP_HEADER_PROVIDER_H_ | 5 #ifndef COMPONENTS_VARIATIONS_VARIATIONS_HTTP_HEADER_PROVIDER_H_ |
6 #define COMPONENTS_VARIATIONS_VARIATIONS_HTTP_HEADER_PROVIDER_H_ | 6 #define COMPONENTS_VARIATIONS_VARIATIONS_HTTP_HEADER_PROVIDER_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 OnFieldTrialGroupFinalized); | 64 OnFieldTrialGroupFinalized); |
65 | 65 |
66 VariationsHttpHeaderProvider(); | 66 VariationsHttpHeaderProvider(); |
67 virtual ~VariationsHttpHeaderProvider(); | 67 virtual ~VariationsHttpHeaderProvider(); |
68 | 68 |
69 // base::FieldTrialList::Observer implementation. | 69 // base::FieldTrialList::Observer implementation. |
70 // This will add the variation ID associated with |trial_name| and | 70 // This will add the variation ID associated with |trial_name| and |
71 // |group_name| to the variation ID cache. | 71 // |group_name| to the variation ID cache. |
72 virtual void OnFieldTrialGroupFinalized( | 72 virtual void OnFieldTrialGroupFinalized( |
73 const std::string& trial_name, | 73 const std::string& trial_name, |
74 const std::string& group_name) OVERRIDE; | 74 const std::string& group_name) override; |
75 | 75 |
76 // Prepares the variation IDs cache with initial values if not already done. | 76 // Prepares the variation IDs cache with initial values if not already done. |
77 // This method also registers the caller with the FieldTrialList to receive | 77 // This method also registers the caller with the FieldTrialList to receive |
78 // new variation IDs. | 78 // new variation IDs. |
79 void InitVariationIDsCacheIfNeeded(); | 79 void InitVariationIDsCacheIfNeeded(); |
80 | 80 |
81 // Takes whatever is currently in |variation_ids_set_| and recreates | 81 // Takes whatever is currently in |variation_ids_set_| and recreates |
82 // |variation_ids_header_| with it. Assumes the the |lock_| is currently | 82 // |variation_ids_header_| with it. Assumes the the |lock_| is currently |
83 // held. | 83 // held. |
84 void UpdateVariationIDsHeaderValue(); | 84 void UpdateVariationIDsHeaderValue(); |
(...skipping 19 matching lines...) Expand all Loading... |
104 std::set<VariationID> default_trigger_id_set_; | 104 std::set<VariationID> default_trigger_id_set_; |
105 | 105 |
106 std::string variation_ids_header_; | 106 std::string variation_ids_header_; |
107 | 107 |
108 DISALLOW_COPY_AND_ASSIGN(VariationsHttpHeaderProvider); | 108 DISALLOW_COPY_AND_ASSIGN(VariationsHttpHeaderProvider); |
109 }; | 109 }; |
110 | 110 |
111 } // namespace variations | 111 } // namespace variations |
112 | 112 |
113 #endif // COMPONENTS_VARIATIONS_VARIATIONS_HTTP_HEADER_PROVIDER_H_ | 113 #endif // COMPONENTS_VARIATIONS_VARIATIONS_HTTP_HEADER_PROVIDER_H_ |
OLD | NEW |