OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 // Contains constants for known URLs and portions thereof. | 5 // Contains constants for known URLs and portions thereof. |
6 | 6 |
7 #ifndef CHROME_COMMON_URL_CONSTANTS_H_ | 7 #ifndef CHROME_COMMON_URL_CONSTANTS_H_ |
8 #define CHROME_COMMON_URL_CONSTANTS_H_ | 8 #define CHROME_COMMON_URL_CONSTANTS_H_ |
9 | 9 |
10 #include <string> | 10 #include <string> |
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
345 // dialog. | 345 // dialog. |
346 extern const char kChromeSyncMergeTroubleshootingURL[]; | 346 extern const char kChromeSyncMergeTroubleshootingURL[]; |
347 #endif | 347 #endif |
348 | 348 |
349 // "Learn more" URL for the enterprise sign-in confirmation dialog. | 349 // "Learn more" URL for the enterprise sign-in confirmation dialog. |
350 extern const char kChromeEnterpriseSignInLearnMoreURL[]; | 350 extern const char kChromeEnterpriseSignInLearnMoreURL[]; |
351 | 351 |
352 // "Learn more" URL for resetting profile preferences. | 352 // "Learn more" URL for resetting profile preferences. |
353 extern const char kResetProfileSettingsLearnMoreURL[]; | 353 extern const char kResetProfileSettingsLearnMoreURL[]; |
354 | 354 |
| 355 // "Learn more" URL for when profile settings are automatically reset. |
| 356 extern const char kAutomaticSettingsResetLearnMoreURL[]; |
| 357 |
355 // Management URL for the supervised users. | 358 // Management URL for the supervised users. |
356 extern const char kSupervisedUserManagementURL[]; | 359 extern const char kSupervisedUserManagementURL[]; |
357 | 360 |
358 // Management URL for the supervised users - version without scheme, used | 361 // Management URL for the supervised users - version without scheme, used |
359 // for display. | 362 // for display. |
360 extern const char kSupervisedUserManagementDisplayURL[]; | 363 extern const char kSupervisedUserManagementDisplayURL[]; |
361 | 364 |
362 // Help URL for the settings page's search feature. | 365 // Help URL for the settings page's search feature. |
363 extern const char kSettingsSearchHelpURL[]; | 366 extern const char kSettingsSearchHelpURL[]; |
364 | 367 |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
513 extern const char kLanguageSettingsLearnMoreUrl[]; | 516 extern const char kLanguageSettingsLearnMoreUrl[]; |
514 | 517 |
515 #if defined(OS_MACOSX) | 518 #if defined(OS_MACOSX) |
516 // The URL for the 32-bit Mac deprecation help center article | 519 // The URL for the 32-bit Mac deprecation help center article |
517 extern const char kMac32BitDeprecationURL[]; | 520 extern const char kMac32BitDeprecationURL[]; |
518 #endif | 521 #endif |
519 | 522 |
520 } // namespace chrome | 523 } // namespace chrome |
521 | 524 |
522 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 525 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |