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 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
402 | 402 |
403 // "Learn more" URL for "Aw snap" page. | 403 // "Learn more" URL for "Aw snap" page. |
404 extern const char kCrashReasonURL[]; | 404 extern const char kCrashReasonURL[]; |
405 | 405 |
406 // "Learn more" URL for killed tab page. | 406 // "Learn more" URL for killed tab page. |
407 extern const char kKillReasonURL[]; | 407 extern const char kKillReasonURL[]; |
408 | 408 |
409 // "Learn more" URL for the Privacy section under Options. | 409 // "Learn more" URL for the Privacy section under Options. |
410 extern const char kPrivacyLearnMoreURL[]; | 410 extern const char kPrivacyLearnMoreURL[]; |
411 | 411 |
| 412 // Help URL for the Rappor setting. |
| 413 extern const char kRapporLearnMoreURL[]; |
| 414 |
412 // "Learn more" URL for the "Do not track" setting in the privacy section. | 415 // "Learn more" URL for the "Do not track" setting in the privacy section. |
413 extern const char kDoNotTrackLearnMoreURL[]; | 416 extern const char kDoNotTrackLearnMoreURL[]; |
414 | 417 |
415 #if defined(OS_CHROMEOS) | 418 #if defined(OS_CHROMEOS) |
416 // These URLs are currently ChromeOS only. | 419 // These URLs are currently ChromeOS only. |
417 | 420 |
418 // "Learn more" URL for the attestation of content protection setting. | 421 // "Learn more" URL for the attestation of content protection setting. |
419 extern const char kAttestationForContentProtectionLearnMoreURL[]; | 422 extern const char kAttestationForContentProtectionLearnMoreURL[]; |
420 | 423 |
421 // "Learn more" URL for the enhanced playback notification dialog. | 424 // "Learn more" URL for the enhanced playback notification dialog. |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
545 // The URL for the 32-bit Mac deprecation help center article | 548 // The URL for the 32-bit Mac deprecation help center article |
546 extern const char kMac32BitDeprecationURL[]; | 549 extern const char kMac32BitDeprecationURL[]; |
547 #endif | 550 #endif |
548 | 551 |
549 // The URL for the "Learn more" link the the Easy Unlock settings. | 552 // The URL for the "Learn more" link the the Easy Unlock settings. |
550 extern const char kEasyUnlockLearnMoreUrl[]; | 553 extern const char kEasyUnlockLearnMoreUrl[]; |
551 | 554 |
552 } // namespace chrome | 555 } // namespace chrome |
553 | 556 |
554 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 557 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |