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 638 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
649 }; | 649 }; |
650 const int kNumberOfChromeDebugURLs = | 650 const int kNumberOfChromeDebugURLs = |
651 static_cast<int>(arraysize(kChromeDebugURLs)); | 651 static_cast<int>(arraysize(kChromeDebugURLs)); |
652 | 652 |
653 const char kChromeNativeScheme[] = "chrome-native"; | 653 const char kChromeNativeScheme[] = "chrome-native"; |
654 | 654 |
655 const char kChromeSearchScheme[] = "chrome-search"; | 655 const char kChromeSearchScheme[] = "chrome-search"; |
656 const char kChromeSearchLocalNtpHost[] = "local-ntp"; | 656 const char kChromeSearchLocalNtpHost[] = "local-ntp"; |
657 const char kChromeSearchLocalNtpUrl[] = | 657 const char kChromeSearchLocalNtpUrl[] = |
658 "chrome-search://local-ntp/local-ntp.html"; | 658 "chrome-search://local-ntp/local-ntp.html"; |
659 const char kChromeSearchOnlineNtpHost[] = "online-ntp"; | 659 const char kChromeSearchRemoteNtpHost[] = "remote-ntp"; |
660 | 660 |
661 const char kChromeSearchMostVisitedHost[] = "most-visited"; | 661 const char kChromeSearchMostVisitedHost[] = "most-visited"; |
662 const char kChromeSearchMostVisitedUrl[] = "chrome-search://most-visited/"; | 662 const char kChromeSearchMostVisitedUrl[] = "chrome-search://most-visited/"; |
663 | 663 |
664 const char kDomDistillerScheme[] = "chrome-distiller"; | 664 const char kDomDistillerScheme[] = "chrome-distiller"; |
665 | 665 |
666 // Google SafeSearch query parameters. | 666 // Google SafeSearch query parameters. |
667 const char kSafeSearchSafeParameter[] = "safe=active"; | 667 const char kSafeSearchSafeParameter[] = "safe=active"; |
668 const char kSafeSearchSsuiParameter[] = "ssui=on"; | 668 const char kSafeSearchSsuiParameter[] = "ssui=on"; |
669 | 669 |
(...skipping 10 matching lines...) Expand all Loading... |
680 #if defined(OS_MACOSX) | 680 #if defined(OS_MACOSX) |
681 const char kMac32BitDeprecationURL[] = | 681 const char kMac32BitDeprecationURL[] = |
682 #if !defined(ARCH_CPU_64_BITS) | 682 #if !defined(ARCH_CPU_64_BITS) |
683 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; | 683 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; |
684 #else | 684 #else |
685 ""; | 685 ""; |
686 #endif | 686 #endif |
687 #endif | 687 #endif |
688 | 688 |
689 } // namespace chrome | 689 } // namespace chrome |
OLD | NEW |