Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(301)

Side by Side Diff: chrome/browser/flag_descriptions.h

Issue 2805683003: Allow for pausing background tabs on desktop via about:flags. (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 5 #ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
7 7
8 // Includes needed for macros allowing conditional compilation of some strings. 8 // Includes needed for macros allowing conditional compilation of some strings.
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 #include "build/buildflag.h" 10 #include "build/buildflag.h"
(...skipping 2923 matching lines...) Expand 10 before | Expand all | Expand 10 after
2934 2934
2935 #if defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || \ 2935 #if defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || \
2936 defined(OS_WIN) 2936 defined(OS_WIN)
2937 2937
2938 // Name of the flag that enables receiving entity suggestions. 2938 // Name of the flag that enables receiving entity suggestions.
2939 extern const char kOmniboxEntitySuggestionsName[]; 2939 extern const char kOmniboxEntitySuggestionsName[];
2940 2940
2941 // Description of the flag that enables entity suggestions. 2941 // Description of the flag that enables entity suggestions.
2942 extern const char kOmniboxEntitySuggestionsDescription[]; 2942 extern const char kOmniboxEntitySuggestionsDescription[];
2943 2943
2944 extern const char kPauseBackgroundTabsName[];
2945 extern const char kPauseBackgroundTabsDescription[];
2946
2944 #endif // defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || 2947 #endif // defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) ||
2945 // defined(OS_WIN) 2948 // defined(OS_WIN)
2946 2949
2947 #if defined(OS_CHROMEOS) 2950 #if defined(OS_CHROMEOS)
2948 2951
2949 // Name of the flag that enables ChromeVox support for ARC. 2952 // Name of the flag that enables ChromeVox support for ARC.
2950 extern const char kEnableChromevoxArcSupportName[]; 2953 extern const char kEnableChromevoxArcSupportName[];
2951 2954
2952 // Description of the flag that enables ChromeVox support for ARC. 2955 // Description of the flag that enables ChromeVox support for ARC.
2953 extern const char kEnableChromevoxArcSupportDescription[]; 2956 extern const char kEnableChromevoxArcSupportDescription[];
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
3158 3161
3159 // Description of the about: flag enabling emoji, handwriting and voice input on 3162 // Description of the about: flag enabling emoji, handwriting and voice input on
3160 // opt-in IME menu. 3163 // opt-in IME menu.
3161 extern const char kEnableEhvInputDescription[]; 3164 extern const char kEnableEhvInputDescription[];
3162 3165
3163 #endif // #if defined(OS_CHROMEOS) 3166 #endif // #if defined(OS_CHROMEOS)
3164 3167
3165 } // namespace flag_descriptions 3168 } // namespace flag_descriptions
3166 3169
3167 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 3170 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698