blob: cd10825aa573e46b8aae7e748d3047100f93b46c [file] [log] [blame]
[email protected]cffb2002014-05-22 03:58:391// Copyright 2014 The Chromium Authors. All rights reserved.
[email protected]21344672013-11-07 06:04:282// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
sdefresnea59146f2015-08-14 15:47:005#ifndef COMPONENTS_VARIATIONS_EXPERIMENT_LABELS_H_
6#define COMPONENTS_VARIATIONS_EXPERIMENT_LABELS_H_
[email protected]21344672013-11-07 06:04:287
8#include "base/metrics/field_trial.h"
9#include "base/strings/string16.h"
10
blundell57bcfed2015-09-04 08:44:4511namespace variations {
[email protected]21344672013-11-07 06:04:2812
[email protected]21344672013-11-07 06:04:2813// Takes the value of experiment_labels from the registry and returns a valid
14// experiment_labels string value containing only the labels that are not
15// associated with Chrome Variations.
[email protected]428fac12013-12-05 21:38:4916base::string16 ExtractNonVariationLabels(const base::string16& labels);
[email protected]21344672013-11-07 06:04:2817
blundell57bcfed2015-09-04 08:44:4518} // namespace variations
[email protected]21344672013-11-07 06:04:2819
sdefresnea59146f2015-08-14 15:47:0020#endif // COMPONENTS_VARIATIONS_EXPERIMENT_LABELS_H_