| 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 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 389 | 389 |
| 390 // Help URL for the settings page's search feature. | 390 // Help URL for the settings page's search feature. |
| 391 extern const char kSettingsSearchHelpURL[]; | 391 extern const char kSettingsSearchHelpURL[]; |
| 392 | 392 |
| 393 // Help URL for the Omnibox setting. | 393 // Help URL for the Omnibox setting. |
| 394 extern const char kOmniboxLearnMoreURL[]; | 394 extern const char kOmniboxLearnMoreURL[]; |
| 395 | 395 |
| 396 // "What do these mean?" URL for the Page Info bubble. | 396 // "What do these mean?" URL for the Page Info bubble. |
| 397 extern const char kPageInfoHelpCenterURL[]; | 397 extern const char kPageInfoHelpCenterURL[]; |
| 398 | 398 |
| 399 // "Learn more" URL for "Aw snap" page. | |
| 400 extern const char kCrashReasonURL[]; | |
| 401 | |
| 402 // "Learn more" URL for killed tab page. | |
| 403 extern const char kKillReasonURL[]; | |
| 404 | |
| 405 // "Learn more" URL for the Privacy section under Options. | 399 // "Learn more" URL for the Privacy section under Options. |
| 406 extern const char kPrivacyLearnMoreURL[]; | 400 extern const char kPrivacyLearnMoreURL[]; |
| 407 | 401 |
| 408 // "Learn more" URL for the "Do not track" setting in the privacy section. | 402 // "Learn more" URL for the "Do not track" setting in the privacy section. |
| 409 extern const char kDoNotTrackLearnMoreURL[]; | 403 extern const char kDoNotTrackLearnMoreURL[]; |
| 410 | 404 |
| 411 #if defined(OS_CHROMEOS) | 405 #if defined(OS_CHROMEOS) |
| 412 // These URLs are currently ChromeOS only. | 406 // These URLs are currently ChromeOS only. |
| 413 | 407 |
| 414 // "Learn more" URL for the attestation of content protection setting. | 408 // "Learn more" URL for the attestation of content protection setting. |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 542 // The URL for the 32-bit Mac deprecation help center article | 536 // The URL for the 32-bit Mac deprecation help center article |
| 543 extern const char kMac32BitDeprecationURL[]; | 537 extern const char kMac32BitDeprecationURL[]; |
| 544 #endif | 538 #endif |
| 545 | 539 |
| 546 // 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. |
| 547 extern const char kEasyUnlockLearnMoreUrl[]; | 541 extern const char kEasyUnlockLearnMoreUrl[]; |
| 548 | 542 |
| 549 } // namespace chrome | 543 } // namespace chrome |
| 550 | 544 |
| 551 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 545 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |