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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 const char kChromeUIThemeURL[] = "chrome://theme/"; | 86 const char kChromeUIThemeURL[] = "chrome://theme/"; |
87 const char kChromeUIThumbnailURL[] = "chrome://thumb/"; | 87 const char kChromeUIThumbnailURL[] = "chrome://thumb/"; |
88 const char kChromeUIThumbnailListURL[] = "chrome://thumbnails/"; | 88 const char kChromeUIThumbnailListURL[] = "chrome://thumbnails/"; |
89 const char kChromeUIUberURL[] = "chrome://chrome/"; | 89 const char kChromeUIUberURL[] = "chrome://chrome/"; |
90 const char kChromeUIUberFrameURL[] = "chrome://uber-frame/"; | 90 const char kChromeUIUberFrameURL[] = "chrome://uber-frame/"; |
91 const char kChromeUIUserActionsURL[] = "chrome://user-actions/"; | 91 const char kChromeUIUserActionsURL[] = "chrome://user-actions/"; |
92 const char kChromeUIVersionURL[] = "chrome://version/"; | 92 const char kChromeUIVersionURL[] = "chrome://version/"; |
93 | 93 |
94 #if defined(OS_ANDROID) | 94 #if defined(OS_ANDROID) |
95 const char kChromeUINativeNewTabURL[] = "chrome-native://newtab/"; | 95 const char kChromeUINativeNewTabURL[] = "chrome-native://newtab/"; |
| 96 const char kChromeUINativeBookmarksURL[] = "chrome-native://bookmarks/"; |
| 97 const char kChromeUINativeRecentTabsURL[] = "chrome-native://recent-tabs/"; |
96 const char kChromeUIWelcomeURL[] = "chrome://welcome/"; | 98 const char kChromeUIWelcomeURL[] = "chrome://welcome/"; |
97 #endif | 99 #endif |
98 | 100 |
99 #if defined(OS_CHROMEOS) | 101 #if defined(OS_CHROMEOS) |
100 const char kChromeUIActivationMessage[] = "chrome://activationmessage/"; | 102 const char kChromeUIActivationMessage[] = "chrome://activationmessage/"; |
101 const char kChromeUIBluetoothPairingURL[] = "chrome://bluetooth-pairing/"; | 103 const char kChromeUIBluetoothPairingURL[] = "chrome://bluetooth-pairing/"; |
102 const char kChromeUICertificateManagerDialogURL[] = | 104 const char kChromeUICertificateManagerDialogURL[] = |
103 "chrome://certificate-manager/"; | 105 "chrome://certificate-manager/"; |
104 const char kChromeUIChargerReplacementURL[] = "chrome://charger-replacement/"; | 106 const char kChromeUIChargerReplacementURL[] = "chrome://charger-replacement/"; |
105 const char kChromeUIChooseMobileNetworkURL[] = | 107 const char kChromeUIChooseMobileNetworkURL[] = |
(...skipping 601 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
707 ""; | 709 ""; |
708 #endif | 710 #endif |
709 #endif | 711 #endif |
710 | 712 |
711 // TODO(tengs): Replace with real URL when ready. | 713 // TODO(tengs): Replace with real URL when ready. |
712 const char kEasyUnlockLearnMoreUrl[] = | 714 const char kEasyUnlockLearnMoreUrl[] = |
713 "https://support.google.com/chromebook/?p=easy_unlock"; | 715 "https://support.google.com/chromebook/?p=easy_unlock"; |
714 const char kEasyUnlockManagementUrl[] = "https://chrome.com"; | 716 const char kEasyUnlockManagementUrl[] = "https://chrome.com"; |
715 | 717 |
716 } // namespace chrome | 718 } // namespace chrome |
OLD | NEW |