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