Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2012 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 #ifndef CHROME_COMMON_PAUSE_TABS_FIELD_TRIAL_H_ | |
| 6 #define CHROME_COMMON_PAUSE_TABS_FIELD_TRIAL_H_ | |
| 7 | |
| 8 #include "base/feature_list.h" | |
| 9 | |
| 10 namespace pausetabs { | |
| 11 | |
| 12 const base::Feature kPauseBackgroundTabsFeature{ | |
| 13 "PauseBackgroundTabs", base::FEATURE_DISABLED_BY_DEFAULT}; | |
| 14 | |
| 15 const char kPauseBackgroundTabsFeatureParameterName[] = "pause-background-tabs"; | |
| 16 | |
| 17 // Mode values. | |
| 18 const char kPauseBackgroundTabsFeatureModeParameterMinimal[] = "minimal"; | |
| 19 const char kPauseBackgroundTabsFeatureModeParameterLow[] = "low"; | |
| 20 const char kPauseBackgroundTabsFeatureModeParameterMedium[] = "medium"; | |
| 21 const char kPauseBackgroundTabsFeatureModeParameterHigh[] = "high"; | |
| 22 const char kPauseBackgroundTabsFeatureModeParameterMax[] = "max"; | |
|
Alexei Svitkine (slow)
2017/04/10 20:44:49
Nit: Given all of these already in pausetabs names
| |
| 23 | |
| 24 } // namespace pausetabs | |
| 25 | |
| 26 #endif // CHROME_COMMON_PAUSE_TABS_FIELD_TRIAL_H_ | |
| OLD | NEW |