blob: 8d15b831f78584ac51f4ff2e525b74d5344c5a72 [file] [log] [blame]
Caitlin Fischer82b1af62020-09-17 20:02:281// 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
11namespace variations {
12namespace 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.
18COMPONENT_EXPORT(VARIATIONS_FEATURES)
19extern const base::Feature kRestrictGoogleWebVisibility;
20
21} // namespace internal
22} // namespace variations
23
24#endif // COMPONENTS_VARIATIONS_VARIATIONS_ASSOCIATED_DATA_H_