| 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 647 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 658 }; | 658 }; |
| 659 const int kNumberOfChromeDebugURLs = | 659 const int kNumberOfChromeDebugURLs = |
| 660 static_cast<int>(arraysize(kChromeDebugURLs)); | 660 static_cast<int>(arraysize(kChromeDebugURLs)); |
| 661 | 661 |
| 662 const char kChromeNativeScheme[] = "chrome-native"; | 662 const char kChromeNativeScheme[] = "chrome-native"; |
| 663 | 663 |
| 664 const char kChromeSearchScheme[] = "chrome-search"; | 664 const char kChromeSearchScheme[] = "chrome-search"; |
| 665 const char kChromeSearchLocalNtpHost[] = "local-ntp"; | 665 const char kChromeSearchLocalNtpHost[] = "local-ntp"; |
| 666 const char kChromeSearchLocalNtpUrl[] = | 666 const char kChromeSearchLocalNtpUrl[] = |
| 667 "chrome-search://local-ntp/local-ntp.html"; | 667 "chrome-search://local-ntp/local-ntp.html"; |
| 668 const char kChromeSearchOnlineNtpHost[] = "online-ntp"; | 668 const char kChromeSearchRemoteNtpHost[] = "remote-ntp"; |
| 669 | 669 |
| 670 const char kChromeSearchMostVisitedHost[] = "most-visited"; | 670 const char kChromeSearchMostVisitedHost[] = "most-visited"; |
| 671 const char kChromeSearchMostVisitedUrl[] = "chrome-search://most-visited/"; | 671 const char kChromeSearchMostVisitedUrl[] = "chrome-search://most-visited/"; |
| 672 | 672 |
| 673 const char kDomDistillerScheme[] = "chrome-distiller"; | 673 const char kDomDistillerScheme[] = "chrome-distiller"; |
| 674 | 674 |
| 675 // Google SafeSearch query parameters. | 675 // Google SafeSearch query parameters. |
| 676 const char kSafeSearchSafeParameter[] = "safe=active"; | 676 const char kSafeSearchSafeParameter[] = "safe=active"; |
| 677 const char kSafeSearchSsuiParameter[] = "ssui=on"; | 677 const char kSafeSearchSsuiParameter[] = "ssui=on"; |
| 678 | 678 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 689 #if defined(OS_MACOSX) | 689 #if defined(OS_MACOSX) |
| 690 const char kMac32BitDeprecationURL[] = | 690 const char kMac32BitDeprecationURL[] = |
| 691 #if !defined(ARCH_CPU_64_BITS) | 691 #if !defined(ARCH_CPU_64_BITS) |
| 692 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; | 692 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; |
| 693 #else | 693 #else |
| 694 ""; | 694 ""; |
| 695 #endif | 695 #endif |
| 696 #endif | 696 #endif |
| 697 | 697 |
| 698 } // namespace chrome | 698 } // namespace chrome |
| OLD | NEW |