| 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 486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 497 const char kDoNotTrackLearnMoreURL[] = | 497 const char kDoNotTrackLearnMoreURL[] = |
| 498 #if defined(OS_CHROMEOS) | 498 #if defined(OS_CHROMEOS) |
| 499 "https://support.google.com/chromeos/?p=settings_do_not_track"; | 499 "https://support.google.com/chromeos/?p=settings_do_not_track"; |
| 500 #else | 500 #else |
| 501 "https://support.google.com/chrome/?p=settings_do_not_track"; | 501 "https://support.google.com/chrome/?p=settings_do_not_track"; |
| 502 #endif | 502 #endif |
| 503 | 503 |
| 504 #if defined(OS_CHROMEOS) | 504 #if defined(OS_CHROMEOS) |
| 505 const char kAttestationForContentProtectionLearnMoreURL[] = | 505 const char kAttestationForContentProtectionLearnMoreURL[] = |
| 506 "https://support.google.com/chromebook/?p=verified_access"; | 506 "https://support.google.com/chromebook/?p=verified_access"; |
| 507 #endif |
| 507 | 508 |
| 509 #if defined(OS_CHROMEOS) || defined(OS_ANDROID) |
| 508 const char kEnhancedPlaybackNotificationLearnMoreURL[] = | 510 const char kEnhancedPlaybackNotificationLearnMoreURL[] = |
| 511 #endif |
| 512 #if defined(OS_CHROMEOS) |
| 509 "https://support.google.com/chromebook/?p=enhanced_playback"; | 513 "https://support.google.com/chromebook/?p=enhanced_playback"; |
| 514 #elif defined(OS_ANDROID) |
| 515 // Keep in sync with chrome/android/java/strings/android_chrome_strings.grd |
| 516 "https://support.google.com/chrome/?p=mobile_protected_content"; |
| 510 #endif | 517 #endif |
| 511 | 518 |
| 512 const char kChromiumProjectURL[] = "http://www.chromium.org/"; | 519 const char kChromiumProjectURL[] = "http://www.chromium.org/"; |
| 513 | 520 |
| 514 const char kLearnMoreReportingURL[] = | 521 const char kLearnMoreReportingURL[] = |
| 515 "https://support.google.com/chrome/?p=ui_usagestat"; | 522 "https://support.google.com/chrome/?p=ui_usagestat"; |
| 516 | 523 |
| 517 const char kOutdatedPluginLearnMoreURL[] = | 524 const char kOutdatedPluginLearnMoreURL[] = |
| 518 "https://support.google.com/chrome/?p=ib_outdated_plugin"; | 525 "https://support.google.com/chrome/?p=ib_outdated_plugin"; |
| 519 | 526 |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 738 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; | 745 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; |
| 739 #else | 746 #else |
| 740 ""; | 747 ""; |
| 741 #endif | 748 #endif |
| 742 #endif | 749 #endif |
| 743 | 750 |
| 744 const char kEasyUnlockLearnMoreUrl[] = | 751 const char kEasyUnlockLearnMoreUrl[] = |
| 745 "https://support.google.com/chromebook/?p=smart_lock"; | 752 "https://support.google.com/chromebook/?p=smart_lock"; |
| 746 | 753 |
| 747 } // namespace chrome | 754 } // namespace chrome |
| OLD | NEW |