blob: a2fc67cfb8953c70367cfe564395b2bd8d24e888 [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef WEBLAYER_BROWSER_WEBLAYER_FIELD_TRIALS_H_
#define WEBLAYER_BROWSER_WEBLAYER_FIELD_TRIALS_H_
#include "base/macros.h"
#include "components/variations/platform_field_trials.h"
namespace weblayer {
// Responsible for setting up field trials specific to WebLayer. Currently all
// functions are stubs, as WebLayer has no specific field trials.
class WebLayerFieldTrials : public variations::PlatformFieldTrials {
public:
WebLayerFieldTrials() = default;
~WebLayerFieldTrials() override = default;
// variations::PlatformFieldTrials:
void SetupFieldTrials() override;
void SetupFeatureControllingFieldTrials(
bool has_seed,
base::FeatureList* feature_list) override {}
private:
DISALLOW_COPY_AND_ASSIGN(WebLayerFieldTrials);
};
} // namespace weblayer
#endif // WEBLAYER_BROWSER_WEBLAYER_FIELD_TRIALS_H_