| 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 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 374 // Management URL for the supervised users. | 374 // Management URL for the supervised users. |
| 375 extern const char kSupervisedUserManagementURL[]; | 375 extern const char kSupervisedUserManagementURL[]; |
| 376 | 376 |
| 377 // Management URL for the supervised users - version without scheme, used | 377 // Management URL for the supervised users - version without scheme, used |
| 378 // for display. | 378 // for display. |
| 379 extern const char kSupervisedUserManagementDisplayURL[]; | 379 extern const char kSupervisedUserManagementDisplayURL[]; |
| 380 | 380 |
| 381 // Help URL for the settings page's search feature. | 381 // Help URL for the settings page's search feature. |
| 382 extern const char kSettingsSearchHelpURL[]; | 382 extern const char kSettingsSearchHelpURL[]; |
| 383 | 383 |
| 384 // "About" URL for the translate bar's options menu. | |
| 385 extern const char kAboutGoogleTranslateURL[]; | |
| 386 | |
| 387 // Help URL for the Omnibox setting. | 384 // Help URL for the Omnibox setting. |
| 388 extern const char kOmniboxLearnMoreURL[]; | 385 extern const char kOmniboxLearnMoreURL[]; |
| 389 | 386 |
| 390 // "What do these mean?" URL for the Page Info bubble. | 387 // "What do these mean?" URL for the Page Info bubble. |
| 391 extern const char kPageInfoHelpCenterURL[]; | 388 extern const char kPageInfoHelpCenterURL[]; |
| 392 | 389 |
| 393 // "Learn more" URL for "Aw snap" page. | 390 // "Learn more" URL for "Aw snap" page. |
| 394 extern const char kCrashReasonURL[]; | 391 extern const char kCrashReasonURL[]; |
| 395 | 392 |
| 396 // "Learn more" URL for killed tab page. | 393 // "Learn more" URL for killed tab page. |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 542 | 539 |
| 543 // The URL for the "Learn more" link the the Easy Unlock settings. | 540 // The URL for the "Learn more" link the the Easy Unlock settings. |
| 544 extern const char kEasyUnlockLearnMoreUrl[]; | 541 extern const char kEasyUnlockLearnMoreUrl[]; |
| 545 | 542 |
| 546 // The URL to the device management page in the Easy Unlock settings. | 543 // The URL to the device management page in the Easy Unlock settings. |
| 547 extern const char kEasyUnlockManagementUrl[]; | 544 extern const char kEasyUnlockManagementUrl[]; |
| 548 | 545 |
| 549 } // namespace chrome | 546 } // namespace chrome |
| 550 | 547 |
| 551 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 548 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |