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_NET_VARIATIONS_HTTP_HEADER_PROVIDER_H_ |
6 #define COMPONENTS_VARIATIONS_VARIATIONS_HTTP_HEADER_PROVIDER_H_ | 6 #define COMPONENTS_VARIATIONS_NET_VARIATIONS_HTTP_HEADER_PROVIDER_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/gtest_prod_util.h" | 12 #include "base/gtest_prod_util.h" |
13 #include "base/metrics/field_trial.h" | 13 #include "base/metrics/field_trial.h" |
14 #include "base/synchronization/lock.h" | 14 #include "base/synchronization/lock.h" |
15 #include "components/variations/variations_associated_data.h" | 15 #include "components/variations/variations_associated_data.h" |
16 | 16 |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 std::set<VariationID> default_variation_ids_set_; | 102 std::set<VariationID> default_variation_ids_set_; |
103 std::set<VariationID> default_trigger_id_set_; | 103 std::set<VariationID> default_trigger_id_set_; |
104 | 104 |
105 std::string variation_ids_header_; | 105 std::string variation_ids_header_; |
106 | 106 |
107 DISALLOW_COPY_AND_ASSIGN(VariationsHttpHeaderProvider); | 107 DISALLOW_COPY_AND_ASSIGN(VariationsHttpHeaderProvider); |
108 }; | 108 }; |
109 | 109 |
110 } // namespace variations | 110 } // namespace variations |
111 | 111 |
112 #endif // COMPONENTS_VARIATIONS_VARIATIONS_HTTP_HEADER_PROVIDER_H_ | 112 #endif // COMPONENTS_VARIATIONS_NET_VARIATIONS_HTTP_HEADER_PROVIDER_H_ |
OLD | NEW |