// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_VARIATIONS_VARIATIONS_CLIENT_H_ #define COMPONENTS_VARIATIONS_VARIATIONS_CLIENT_H_ #include "base/component_export.h" #include "components/variations/variations.mojom.h" namespace variations { // Used by VariationsURLLoaderThrottle to insulate the content layer from // concepts like user sign in which don't belong there. There is an instance per // profile, so there can be multiple clients at a time when in multi user mode. class COMPONENT_EXPORT(VARIATIONS) VariationsClient { … }; } // namespace variations #endif // COMPONENTS_VARIATIONS_VARIATIONS_CLIENT_H_