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

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

Issue 2849823003: ChromeOS: implement per-user time zone preferences. (Closed)
Patch Set: Moved more code to previous CL. Created 3 years, 6 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 1211 matching lines...) Expand 10 before | Expand all | Expand 10 after
1222 extern const char kCrosRegionsModeDefault[]; 1222 extern const char kCrosRegionsModeDefault[];
1223 extern const char kCrosRegionsModeOverride[]; 1223 extern const char kCrosRegionsModeOverride[];
1224 extern const char kCrosRegionsModeHide[]; 1224 extern const char kCrosRegionsModeHide[];
1225 1225
1226 extern const char kDisableNativeCupsName[]; 1226 extern const char kDisableNativeCupsName[];
1227 extern const char kDisableNativeCupsDescription[]; 1227 extern const char kDisableNativeCupsDescription[];
1228 1228
1229 extern const char kDisableNewVirtualKeyboardBehaviorName[]; 1229 extern const char kDisableNewVirtualKeyboardBehaviorName[];
1230 extern const char kDisableNewVirtualKeyboardBehaviorDescription[]; 1230 extern const char kDisableNewVirtualKeyboardBehaviorDescription[];
1231 1231
1232 extern const char kEnablePerUserTimezoneName[];
1233 extern const char kEnablePerUserTimezoneDescription[];
1234
1232 extern const char kDisableSystemTimezoneAutomaticDetectionName[]; 1235 extern const char kDisableSystemTimezoneAutomaticDetectionName[];
1233 extern const char kDisableSystemTimezoneAutomaticDetectionDescription[]; 1236 extern const char kDisableSystemTimezoneAutomaticDetectionDescription[];
1234 1237
1235 extern const char kDisplayColorCalibrationName[]; 1238 extern const char kDisplayColorCalibrationName[];
1236 extern const char kDisplayColorCalibrationDescription[]; 1239 extern const char kDisplayColorCalibrationDescription[];
1237 1240
1238 extern const char kEnableAndroidWallpapersAppName[]; 1241 extern const char kEnableAndroidWallpapersAppName[];
1239 extern const char kEnableAndroidWallpapersAppDescription[]; 1242 extern const char kEnableAndroidWallpapersAppDescription[];
1240 1243
1241 extern const char kEnableChromevoxArcSupportName[]; 1244 extern const char kEnableChromevoxArcSupportName[];
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
1472 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) 1475 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID)
1473 1476
1474 // ============================================================================ 1477 // ============================================================================
1475 // Don't just add flags to the end, put them in the right section in 1478 // Don't just add flags to the end, put them in the right section in
1476 // alphabetical order. See top instructions for more. 1479 // alphabetical order. See top instructions for more.
1477 // ============================================================================ 1480 // ============================================================================
1478 1481
1479 } // namespace flag_descriptions 1482 } // namespace flag_descriptions
1480 1483
1481 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 1484 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698