Caitlin Fischer | 82b1af6 | 2020-09-17 20:02:28 | [diff] [blame^] | 1 | // Copyright 2020 The Chromium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #ifndef COMPONENTS_VARIATIONS_VARIATIONS_FEATURES_H_ |
| 6 | #define COMPONENTS_VARIATIONS_VARIATIONS_FEATURES_H_ |
| 7 | |
| 8 | #include "base/component_export.h" |
| 9 | #include "base/metrics/field_trial.h" |
| 10 | |
| 11 | namespace variations { |
| 12 | namespace internal { |
| 13 | |
| 14 | // A feature that supports more finely-grained control over the transmission of |
| 15 | // VariationIDs to Google web properties by allowing some VariationIDs to not be |
| 16 | // transmitted in all contexts. See IsFirstPartyContext() in |
| 17 | // variations_http_headers.cc for more details. |
| 18 | COMPONENT_EXPORT(VARIATIONS_FEATURES) |
| 19 | extern const base::Feature kRestrictGoogleWebVisibility; |
| 20 | |
| 21 | } // namespace internal |
| 22 | } // namespace variations |
| 23 | |
| 24 | #endif // COMPONENTS_VARIATIONS_VARIATIONS_ASSOCIATED_DATA_H_ |