blob: 91378c36c2ea7114c72ed8db25163f6c6ecc75f1 [file] [log] [blame]
droger888be0b2015-10-01 14:28:521// Copyright 2015 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#include "components/flags_ui/flags_ui_pref_names.h"
6
7namespace flags_ui {
8namespace prefs {
9
10// List of names of the enabled labs experiments.
Mustafa Emre Acera1a7fb12019-07-24 17:36:5011const char kAboutFlagsEntries[] = "browser.enabled_labs_experiments";
12
13// A dictionary of (flag, origin_list) pairs. Each origin_list is a string
14// containing comma concatenated, serialized Origin objects.
15// This must not be a child of kEnabledLabsExperiment
16// (e.g. browser.enabled_labs_experiments.origin_lists)
17// otherwise it will overwrite browser.enabled_labs_experiments values.
18const char kAboutFlagsOriginLists[] =
19 "browser.enabled_labs_experiments_origin_lists";
droger888be0b2015-10-01 14:28:5220
21} // namespace prefs
22} // namespace flags_ui