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