Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(189)

Side by Side Diff: chrome/common/url_constants.cc

Issue 135383002: InstantExtended: assign all cacheable NTPs to the same process. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix tests. Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/url_constants.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « chrome/common/url_constants.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698