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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
517 extern const char kLanguageSettingsLearnMoreUrl[]; | 520 extern const char kLanguageSettingsLearnMoreUrl[]; |
518 | 521 |
519 #if defined(OS_MACOSX) | 522 #if defined(OS_MACOSX) |
520 // The URL for the 32-bit Mac deprecation help center article | 523 // The URL for the 32-bit Mac deprecation help center article |
521 extern const char kMac32BitDeprecationURL[]; | 524 extern const char kMac32BitDeprecationURL[]; |
522 #endif | 525 #endif |
523 | 526 |
524 } // namespace chrome | 527 } // namespace chrome |
525 | 528 |
526 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 529 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |