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 #include "chrome/common/url_constants.h" | 5 #include "chrome/common/url_constants.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "content/public/common/url_constants.h" | 10 #include "content/public/common/url_constants.h" |
(...skipping 463 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
474 "https://support.google.com/chrome/?p=e_deadjim"; | 474 "https://support.google.com/chrome/?p=e_deadjim"; |
475 #endif | 475 #endif |
476 | 476 |
477 const char kPrivacyLearnMoreURL[] = | 477 const char kPrivacyLearnMoreURL[] = |
478 #if defined(OS_CHROMEOS) | 478 #if defined(OS_CHROMEOS) |
479 "https://support.google.com/chromeos/?p=settings_privacy"; | 479 "https://support.google.com/chromeos/?p=settings_privacy"; |
480 #else | 480 #else |
481 "https://support.google.com/chrome/?p=settings_privacy"; | 481 "https://support.google.com/chrome/?p=settings_privacy"; |
482 #endif | 482 #endif |
483 | 483 |
| 484 const char kRapporLearnMoreURL[] = |
| 485 #if defined(OS_CHROMEOS) |
| 486 "https://support.google.com/chromeos/?p=rappor"; |
| 487 #else |
| 488 "https://support.google.com/chrome/?p=rappor"; |
| 489 #endif |
| 490 |
484 const char kDoNotTrackLearnMoreURL[] = | 491 const char kDoNotTrackLearnMoreURL[] = |
485 #if defined(OS_CHROMEOS) | 492 #if defined(OS_CHROMEOS) |
486 "https://support.google.com/chromeos/?p=settings_do_not_track"; | 493 "https://support.google.com/chromeos/?p=settings_do_not_track"; |
487 #else | 494 #else |
488 "https://support.google.com/chrome/?p=settings_do_not_track"; | 495 "https://support.google.com/chrome/?p=settings_do_not_track"; |
489 #endif | 496 #endif |
490 | 497 |
491 #if defined(OS_CHROMEOS) | 498 #if defined(OS_CHROMEOS) |
492 const char kAttestationForContentProtectionLearnMoreURL[] = | 499 const char kAttestationForContentProtectionLearnMoreURL[] = |
493 "https://support.google.com/chromebook/?p=verified_access"; | 500 "https://support.google.com/chromebook/?p=verified_access"; |
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
724 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; | 731 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; |
725 #else | 732 #else |
726 ""; | 733 ""; |
727 #endif | 734 #endif |
728 #endif | 735 #endif |
729 | 736 |
730 const char kEasyUnlockLearnMoreUrl[] = | 737 const char kEasyUnlockLearnMoreUrl[] = |
731 "https://support.google.com/chromebook/?p=smart_lock"; | 738 "https://support.google.com/chromebook/?p=smart_lock"; |
732 | 739 |
733 } // namespace chrome | 740 } // namespace chrome |
OLD | NEW |