droger | 888be0b | 2015-10-01 14:28:52 | [diff] [blame] | 1 | // 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 | |
| 7 | namespace flags_ui { |
| 8 | namespace prefs { |
| 9 | |
| 10 | // List of names of the enabled labs experiments. |
Mustafa Emre Acer | a1a7fb1 | 2019-07-24 17:36:50 | [diff] [blame] | 11 | const 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. |
| 18 | const char kAboutFlagsOriginLists[] = |
| 19 | "browser.enabled_labs_experiments_origin_lists"; |
droger | 888be0b | 2015-10-01 14:28:52 | [diff] [blame] | 20 | |
| 21 | } // namespace prefs |
| 22 | } // namespace flags_ui |