| 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 const char kChromeUIThemeURL[] = "chrome://theme/"; | 89 const char kChromeUIThemeURL[] = "chrome://theme/"; |
| 90 const char kChromeUIThumbnailURL[] = "chrome://thumb/"; | 90 const char kChromeUIThumbnailURL[] = "chrome://thumb/"; |
| 91 const char kChromeUIThumbnailListURL[] = "chrome://thumbnails/"; | 91 const char kChromeUIThumbnailListURL[] = "chrome://thumbnails/"; |
| 92 const char kChromeUIUberURL[] = "chrome://chrome/"; | 92 const char kChromeUIUberURL[] = "chrome://chrome/"; |
| 93 const char kChromeUIUberFrameURL[] = "chrome://uber-frame/"; | 93 const char kChromeUIUberFrameURL[] = "chrome://uber-frame/"; |
| 94 const char kChromeUIUserActionsURL[] = "chrome://user-actions/"; | 94 const char kChromeUIUserActionsURL[] = "chrome://user-actions/"; |
| 95 const char kChromeUIVersionURL[] = "chrome://version/"; | 95 const char kChromeUIVersionURL[] = "chrome://version/"; |
| 96 const char kChromeUIVoiceSearchURL[] = "chrome://voicesearch/"; | 96 const char kChromeUIVoiceSearchURL[] = "chrome://voicesearch/"; |
| 97 | 97 |
| 98 #if defined(OS_ANDROID) | 98 #if defined(OS_ANDROID) |
| 99 const char kChromeUINativeScheme[] = "chrome-native"; |
| 99 const char kChromeUINativeNewTabURL[] = "chrome-native://newtab/"; | 100 const char kChromeUINativeNewTabURL[] = "chrome-native://newtab/"; |
| 100 const char kChromeUINativeBookmarksURL[] = "chrome-native://bookmarks/"; | 101 const char kChromeUINativeBookmarksURL[] = "chrome-native://bookmarks/"; |
| 101 const char kChromeUINativeRecentTabsURL[] = "chrome-native://recent-tabs/"; | 102 const char kChromeUINativeRecentTabsURL[] = "chrome-native://recent-tabs/"; |
| 102 #endif | 103 #endif |
| 103 | 104 |
| 104 #if defined(OS_CHROMEOS) | 105 #if defined(OS_CHROMEOS) |
| 105 const char kChromeUIActivationMessage[] = "chrome://activationmessage/"; | 106 const char kChromeUIActivationMessage[] = "chrome://activationmessage/"; |
| 106 const char kChromeUIBluetoothPairingURL[] = "chrome://bluetooth-pairing/"; | 107 const char kChromeUIBluetoothPairingURL[] = "chrome://bluetooth-pairing/"; |
| 107 const char kChromeUICertificateManagerDialogURL[] = | 108 const char kChromeUICertificateManagerDialogURL[] = |
| 108 "chrome://certificate-manager/"; | 109 "chrome://certificate-manager/"; |
| (...skipping 604 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 713 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; | 714 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; |
| 714 #else | 715 #else |
| 715 ""; | 716 ""; |
| 716 #endif | 717 #endif |
| 717 #endif | 718 #endif |
| 718 | 719 |
| 719 const char kEasyUnlockLearnMoreUrl[] = | 720 const char kEasyUnlockLearnMoreUrl[] = |
| 720 "https://support.google.com/chromebook/answer/6070209"; | 721 "https://support.google.com/chromebook/answer/6070209"; |
| 721 | 722 |
| 722 } // namespace chrome | 723 } // namespace chrome |
| OLD | NEW |