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 603 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
709 ""; | 711 ""; |
710 #endif | 712 #endif |
711 #endif | 713 #endif |
712 | 714 |
713 // TODO(tengs): Replace with real URL when ready. | 715 // TODO(tengs): Replace with real URL when ready. |
714 const char kEasyUnlockLearnMoreUrl[] = | 716 const char kEasyUnlockLearnMoreUrl[] = |
715 "https://support.google.com/chromebook/?p=easy_unlock"; | 717 "https://support.google.com/chromebook/?p=easy_unlock"; |
716 const char kEasyUnlockManagementUrl[] = "https://chrome.com"; | 718 const char kEasyUnlockManagementUrl[] = "https://chrome.com"; |
717 | 719 |
718 } // namespace chrome | 720 } // namespace chrome |
OLD | NEW |