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

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

Issue 2849823003: ChromeOS: implement per-user time zone preferences. (Closed)
Patch Set: Update after review. Created 3 years, 5 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 1269 matching lines...) Expand 10 before | Expand all | Expand 10 after
1280 extern const char kCrosRegionsModeDefault[]; 1280 extern const char kCrosRegionsModeDefault[];
1281 extern const char kCrosRegionsModeOverride[]; 1281 extern const char kCrosRegionsModeOverride[];
1282 extern const char kCrosRegionsModeHide[]; 1282 extern const char kCrosRegionsModeHide[];
1283 1283
1284 extern const char kDisableNativeCupsName[]; 1284 extern const char kDisableNativeCupsName[];
1285 extern const char kDisableNativeCupsDescription[]; 1285 extern const char kDisableNativeCupsDescription[];
1286 1286
1287 extern const char kDisableNewVirtualKeyboardBehaviorName[]; 1287 extern const char kDisableNewVirtualKeyboardBehaviorName[];
1288 extern const char kDisableNewVirtualKeyboardBehaviorDescription[]; 1288 extern const char kDisableNewVirtualKeyboardBehaviorDescription[];
1289 1289
1290 extern const char kEnablePerUserTimezoneName[];
1291 extern const char kEnablePerUserTimezoneDescription[];
1292
1290 extern const char kDisableSystemTimezoneAutomaticDetectionName[]; 1293 extern const char kDisableSystemTimezoneAutomaticDetectionName[];
1291 extern const char kDisableSystemTimezoneAutomaticDetectionDescription[]; 1294 extern const char kDisableSystemTimezoneAutomaticDetectionDescription[];
1292 1295
1293 extern const char kDisplayColorCalibrationName[]; 1296 extern const char kDisplayColorCalibrationName[];
1294 extern const char kDisplayColorCalibrationDescription[]; 1297 extern const char kDisplayColorCalibrationDescription[];
1295 1298
1296 extern const char kEnableFullscreenAppListName[]; 1299 extern const char kEnableFullscreenAppListName[];
1297 extern const char kEnableFullscreenAppListDescription[]; 1300 extern const char kEnableFullscreenAppListDescription[];
1298 1301
1299 extern const char kEnableAndroidWallpapersAppName[]; 1302 extern const char kEnableAndroidWallpapersAppName[];
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
1560 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) 1563 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID)
1561 1564
1562 // ============================================================================ 1565 // ============================================================================
1563 // Don't just add flags to the end, put them in the right section in 1566 // Don't just add flags to the end, put them in the right section in
1564 // alphabetical order. See top instructions for more. 1567 // alphabetical order. See top instructions for more.
1565 // ============================================================================ 1568 // ============================================================================
1566 1569
1567 } // namespace flag_descriptions 1570 } // namespace flag_descriptions
1568 1571
1569 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 1572 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698