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/macros.h" | 9 #include "base/macros.h" |
10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
131 const char kChromeUIMetroFlowURL[] = "chrome://make-metro/"; | 131 const char kChromeUIMetroFlowURL[] = "chrome://make-metro/"; |
132 #endif | 132 #endif |
133 | 133 |
134 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA) | 134 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA) |
135 const char kChromeUITabModalConfirmDialogURL[] = | 135 const char kChromeUITabModalConfirmDialogURL[] = |
136 "chrome://tab-modal-confirm-dialog/"; | 136 "chrome://tab-modal-confirm-dialog/"; |
137 #endif | 137 #endif |
138 | 138 |
139 #if !defined(OS_ANDROID) | 139 #if !defined(OS_ANDROID) |
140 const char kChromeUICopresenceURL[] = "chrome://copresence/"; | 140 const char kChromeUICopresenceURL[] = "chrome://copresence/"; |
141 const char kChromeUIOfflineInternalsURL[] = "chrome://offline-internals"; | |
dewittj
2016/06/03 23:12:06
Is this a merge error? I would think this would a
chili
2016/06/09 22:29:16
Yes. Merge error
| |
141 #endif | 142 #endif |
142 | 143 |
143 #if defined(ENABLE_WEBRTC) | 144 #if defined(ENABLE_WEBRTC) |
144 const char kChromeUIWebRtcLogsURL[] = "chrome://webrtc-logs/"; | 145 const char kChromeUIWebRtcLogsURL[] = "chrome://webrtc-logs/"; |
145 #endif | 146 #endif |
146 | 147 |
147 #if defined(ENABLE_MEDIA_ROUTER) | 148 #if defined(ENABLE_MEDIA_ROUTER) |
148 const char kChromeUIMediaRouterURL[] = "chrome://media-router/"; | 149 const char kChromeUIMediaRouterURL[] = "chrome://media-router/"; |
149 #if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_CHROMEOS) | 150 #if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_CHROMEOS) |
150 const char kChromeUICastURL[] = "chrome://cast/"; | 151 const char kChromeUICastURL[] = "chrome://cast/"; |
(...skipping 625 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
776 "https://chrome.blogspot.com/2015/11/updates-to-chrome-platform-support.html "; | 777 "https://chrome.blogspot.com/2015/11/updates-to-chrome-platform-support.html "; |
777 #endif | 778 #endif |
778 | 779 |
779 const char kChooserBluetoothOverviewURL[] = | 780 const char kChooserBluetoothOverviewURL[] = |
780 "https://support.google.com/chrome?p=bluetooth"; | 781 "https://support.google.com/chrome?p=bluetooth"; |
781 | 782 |
782 const char kChooserUsbOverviewURL[] = | 783 const char kChooserUsbOverviewURL[] = |
783 "https://support.google.com/chrome?p=webusb"; | 784 "https://support.google.com/chrome?p=webusb"; |
784 | 785 |
785 } // namespace chrome | 786 } // namespace chrome |
OLD | NEW |