| 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 639 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 650 | 650 |
| 651 const char kChromeSearchScheme[] = "chrome-search"; | 651 const char kChromeSearchScheme[] = "chrome-search"; |
| 652 const char kChromeSearchLocalNtpHost[] = "local-ntp"; | 652 const char kChromeSearchLocalNtpHost[] = "local-ntp"; |
| 653 const char kChromeSearchLocalNtpUrl[] = | 653 const char kChromeSearchLocalNtpUrl[] = |
| 654 "chrome-search://local-ntp/local-ntp.html"; | 654 "chrome-search://local-ntp/local-ntp.html"; |
| 655 const char kChromeSearchOnlineNtpHost[] = "online-ntp"; | 655 const char kChromeSearchOnlineNtpHost[] = "online-ntp"; |
| 656 | 656 |
| 657 const char kChromeSearchMostVisitedHost[] = "most-visited"; | 657 const char kChromeSearchMostVisitedHost[] = "most-visited"; |
| 658 const char kChromeSearchMostVisitedUrl[] = "chrome-search://most-visited/"; | 658 const char kChromeSearchMostVisitedUrl[] = "chrome-search://most-visited/"; |
| 659 | 659 |
| 660 const char kDomDistillerScheme[] = "chrome-distiller"; |
| 661 |
| 660 // Google SafeSearch query parameters. | 662 // Google SafeSearch query parameters. |
| 661 const char kSafeSearchSafeParameter[] = "safe=active"; | 663 const char kSafeSearchSafeParameter[] = "safe=active"; |
| 662 const char kSafeSearchSsuiParameter[] = "ssui=on"; | 664 const char kSafeSearchSsuiParameter[] = "ssui=on"; |
| 663 | 665 |
| 664 const char kMediaAccessLearnMoreUrl[] = | 666 const char kMediaAccessLearnMoreUrl[] = |
| 665 "https://support.google.com/chrome/?p=ib_access_cam_mic"; | 667 "https://support.google.com/chrome/?p=ib_access_cam_mic"; |
| 666 | 668 |
| 667 const char kLanguageSettingsLearnMoreUrl[] = | 669 const char kLanguageSettingsLearnMoreUrl[] = |
| 668 #if defined(OS_CHROMEOS) | 670 #if defined(OS_CHROMEOS) |
| 669 "https://support.google.com/chromebook/answer/1059490"; | 671 "https://support.google.com/chromebook/answer/1059490"; |
| 670 #else | 672 #else |
| 671 "https://support.google.com/chrome/topic/1678461"; | 673 "https://support.google.com/chrome/topic/1678461"; |
| 672 #endif | 674 #endif |
| 673 | 675 |
| 674 #if defined(OS_MACOSX) | 676 #if defined(OS_MACOSX) |
| 675 const char kMac32BitDeprecationURL[] = | 677 const char kMac32BitDeprecationURL[] = |
| 676 #if !defined(ARCH_CPU_64_BITS) | 678 #if !defined(ARCH_CPU_64_BITS) |
| 677 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; | 679 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; |
| 678 #else | 680 #else |
| 679 ""; | 681 ""; |
| 680 #endif | 682 #endif |
| 681 #endif | 683 #endif |
| 682 | 684 |
| 683 } // namespace chrome | 685 } // namespace chrome |
| OLD | NEW |