| 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 "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 310 // Accessibility help link for Chrome. | 310 // Accessibility help link for Chrome. |
| 311 extern const char kChromeAccessibilityHelpURL[]; | 311 extern const char kChromeAccessibilityHelpURL[]; |
| 312 #endif | 312 #endif |
| 313 | 313 |
| 314 // "Learn more" URL for the one click signin infobar. | 314 // "Learn more" URL for the one click signin infobar. |
| 315 extern const char kChromeSyncLearnMoreURL[]; | 315 extern const char kChromeSyncLearnMoreURL[]; |
| 316 | 316 |
| 317 // "Learn more" URL for the enterprise sign-in confirmation dialog. | 317 // "Learn more" URL for the enterprise sign-in confirmation dialog. |
| 318 extern const char kChromeEnterpriseSignInLearnMoreURL[]; | 318 extern const char kChromeEnterpriseSignInLearnMoreURL[]; |
| 319 | 319 |
| 320 // Management URL for the supervised users. |
| 321 extern const char kSupervisedUserManagementURL[]; |
| 322 |
| 323 // Management URL for the supervised users - version without scheme, used |
| 324 // for display. |
| 325 extern const char kSupervisedUserManagementDisplayURL[]; |
| 326 |
| 320 // Help URL for the settings page's search feature. | 327 // Help URL for the settings page's search feature. |
| 321 extern const char kSettingsSearchHelpURL[]; | 328 extern const char kSettingsSearchHelpURL[]; |
| 322 | 329 |
| 323 // "About" URL for the translate bar's options menu. | 330 // "About" URL for the translate bar's options menu. |
| 324 extern const char kAboutGoogleTranslateURL[]; | 331 extern const char kAboutGoogleTranslateURL[]; |
| 325 | 332 |
| 326 // Help URL for the Omnibox setting. | 333 // Help URL for the Omnibox setting. |
| 327 extern const char kOmniboxLearnMoreURL[]; | 334 extern const char kOmniboxLearnMoreURL[]; |
| 328 | 335 |
| 329 // "What do these mean?" URL for the Page Info bubble. | 336 // "What do these mean?" URL for the Page Info bubble. |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 445 // Parameters that get appended to force SafeSearch. | 452 // Parameters that get appended to force SafeSearch. |
| 446 extern const char kSafeSearchSafeParameter[]; | 453 extern const char kSafeSearchSafeParameter[]; |
| 447 extern const char kSafeSearchSsuiParameter[]; | 454 extern const char kSafeSearchSsuiParameter[]; |
| 448 | 455 |
| 449 // The URL for the "Learn more" link in the media access infobar. | 456 // The URL for the "Learn more" link in the media access infobar. |
| 450 extern const char kMediaAccessLearnMoreUrl[]; | 457 extern const char kMediaAccessLearnMoreUrl[]; |
| 451 | 458 |
| 452 } // namespace chrome | 459 } // namespace chrome |
| 453 | 460 |
| 454 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 461 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |