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

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

Issue 2676893002: [Android History] Fix chrome://history redirect (Closed)
Patch Set: [Android History] Fix chrome://history redirect Created 3 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
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/macros.h" 9 #include "base/macros.h"
10 #include "build/build_config.h" 10 #include "build/build_config.h"
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 const char kChromeUIWelcomeURL[] = "chrome://welcome/"; 101 const char kChromeUIWelcomeURL[] = "chrome://welcome/";
102 const char kChromeUIWelcomeWin10URL[] = "chrome://welcome-win10/"; 102 const char kChromeUIWelcomeWin10URL[] = "chrome://welcome-win10/";
103 103
104 #if defined(OS_ANDROID) 104 #if defined(OS_ANDROID)
105 const char kChromeUIContextualSearchPromoURL[] = 105 const char kChromeUIContextualSearchPromoURL[] =
106 "chrome://contextual-search-promo"; 106 "chrome://contextual-search-promo";
107 const char kChromeUIJavaCrashURL[] = "chrome://java-crash/"; 107 const char kChromeUIJavaCrashURL[] = "chrome://java-crash/";
108 const char kChromeUINativeScheme[] = "chrome-native"; 108 const char kChromeUINativeScheme[] = "chrome-native";
109 const char kChromeUINativeNewTabURL[] = "chrome-native://newtab/"; 109 const char kChromeUINativeNewTabURL[] = "chrome-native://newtab/";
110 const char kChromeUINativeBookmarksURL[] = "chrome-native://bookmarks/"; 110 const char kChromeUINativeBookmarksURL[] = "chrome-native://bookmarks/";
111 const char kChromeUINativeHistoryURL[] = "chrome-native://history/";
112 const char kChromeUINativePhysicalWebDiagnosticsURL[] = 111 const char kChromeUINativePhysicalWebDiagnosticsURL[] =
113 "chrome-native://physical-web-diagnostics/"; 112 "chrome-native://physical-web-diagnostics/";
114 const char kChromeUINativeRecentTabsURL[] = "chrome-native://recent-tabs/"; 113 const char kChromeUINativeRecentTabsURL[] = "chrome-native://recent-tabs/";
115 #endif 114 #endif
116 115
117 #if defined(OS_CHROMEOS) 116 #if defined(OS_CHROMEOS)
118 const char kChromeUIBluetoothPairingURL[] = "chrome://bluetooth-pairing/"; 117 const char kChromeUIBluetoothPairingURL[] = "chrome://bluetooth-pairing/";
119 const char kChromeUICertificateManagerDialogURL[] = 118 const char kChromeUICertificateManagerDialogURL[] =
120 "chrome://certificate-manager/"; 119 "chrome://certificate-manager/";
121 const char kChromeUIChooseMobileNetworkURL[] = 120 const char kChromeUIChooseMobileNetworkURL[] =
(...skipping 688 matching lines...) Expand 10 before | Expand all | Expand 10 after
810 #endif 809 #endif
811 810
812 const char kChooserUsbOverviewURL[] = 811 const char kChooserUsbOverviewURL[] =
813 "https://support.google.com/chrome?p=webusb"; 812 "https://support.google.com/chrome?p=webusb";
814 813
815 #if defined(OS_CHROMEOS) 814 #if defined(OS_CHROMEOS)
816 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; 815 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/";
817 #endif 816 #endif
818 817
819 } // namespace chrome 818 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698