OLD | NEW |
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 2891 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2902 #endif // defined(OS_ANDROID) | 2902 #endif // defined(OS_ANDROID) |
2903 | 2903 |
2904 // Media Remoting chrome://flags strings | 2904 // Media Remoting chrome://flags strings |
2905 | 2905 |
2906 // Name for the flag to enable Media Remoting | 2906 // Name for the flag to enable Media Remoting |
2907 extern const char kMediaRemotingName[]; | 2907 extern const char kMediaRemotingName[]; |
2908 | 2908 |
2909 // Desciption for the flag to enable Media Remoting | 2909 // Desciption for the flag to enable Media Remoting |
2910 extern const char kMediaRemotingDescription[]; | 2910 extern const char kMediaRemotingDescription[]; |
2911 | 2911 |
2912 // Name for the flag to enable Media Remoting of encrypted content | |
2913 extern const char kMediaRemotingEncryptedName[]; | |
2914 | |
2915 // Desciption for the flag to enable Media Remoting of encrypted content | |
2916 extern const char kMediaRemotingEncryptedDescription[]; | |
2917 | |
2918 // Chrome OS component updates chrome://flags strings | 2912 // Chrome OS component updates chrome://flags strings |
2919 | 2913 |
2920 // Name for the flag to enable Chrome OS component flash updates | 2914 // Name for the flag to enable Chrome OS component flash updates |
2921 extern const char kCrosCompUpdatesName[]; | 2915 extern const char kCrosCompUpdatesName[]; |
2922 | 2916 |
2923 // Description for the flag to enable Chrome OS component flash updates | 2917 // Description for the flag to enable Chrome OS component flash updates |
2924 extern const char kCrosCompUpdatesDescription[]; | 2918 extern const char kCrosCompUpdatesDescription[]; |
2925 | 2919 |
2926 // Native Android History chrome://flags strings | 2920 // Native Android History chrome://flags strings |
2927 | 2921 |
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3308 extern const char kEnableOmniboxClipboardProviderName[]; | 3302 extern const char kEnableOmniboxClipboardProviderName[]; |
3309 | 3303 |
3310 // Description of the flag that enables the omnibox's clipboard URL provider. | 3304 // Description of the flag that enables the omnibox's clipboard URL provider. |
3311 extern const char kEnableOmniboxClipboardProviderDescription[]; | 3305 extern const char kEnableOmniboxClipboardProviderDescription[]; |
3312 | 3306 |
3313 #endif // defined(OS_ANDROID) | 3307 #endif // defined(OS_ANDROID) |
3314 | 3308 |
3315 } // namespace flag_descriptions | 3309 } // namespace flag_descriptions |
3316 | 3310 |
3317 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3311 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
OLD | NEW |