| 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 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 const char kChromeUIThemeHost[] = "theme"; | 245 const char kChromeUIThemeHost[] = "theme"; |
| 246 const char kChromeUIThumbnailHost[] = "thumb"; | 246 const char kChromeUIThumbnailHost[] = "thumb"; |
| 247 const char kChromeUIThumbnailHost2[] = "thumb2"; | 247 const char kChromeUIThumbnailHost2[] = "thumb2"; |
| 248 const char kChromeUIThumbnailListHost[] = "thumbnails"; | 248 const char kChromeUIThumbnailListHost[] = "thumbnails"; |
| 249 const char kChromeUITouchIconHost[] = "touch-icon"; | 249 const char kChromeUITouchIconHost[] = "touch-icon"; |
| 250 const char kChromeUITranslateInternalsHost[] = "translate-internals"; | 250 const char kChromeUITranslateInternalsHost[] = "translate-internals"; |
| 251 const char kChromeUIUberFrameHost[] = "uber-frame"; | 251 const char kChromeUIUberFrameHost[] = "uber-frame"; |
| 252 const char kChromeUIUberHost[] = "chrome"; | 252 const char kChromeUIUberHost[] = "chrome"; |
| 253 const char kChromeUIUserActionsHost[] = "user-actions"; | 253 const char kChromeUIUserActionsHost[] = "user-actions"; |
| 254 const char kChromeUIVersionHost[] = "version"; | 254 const char kChromeUIVersionHost[] = "version"; |
| 255 const char kChromeUIWebRTCDeviceProviderHost[] = | |
| 256 "webrtc-device-provider"; | |
| 257 const char kChromeUIWorkersHost[] = "workers"; | 255 const char kChromeUIWorkersHost[] = "workers"; |
| 258 | 256 |
| 259 const char kChromeUIThemePath[] = "theme"; | 257 const char kChromeUIThemePath[] = "theme"; |
| 260 | 258 |
| 261 #if defined(ENABLE_PRINT_PREVIEW) | 259 #if defined(ENABLE_PRINT_PREVIEW) |
| 262 const char kChromeUIPrintHost[] = "print"; | 260 const char kChromeUIPrintHost[] = "print"; |
| 263 #endif // ENABLE_PRINT_PREVIEW | 261 #endif // ENABLE_PRINT_PREVIEW |
| 264 | 262 |
| 265 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) | 263 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) |
| 266 const char kChromeUILinuxProxyConfigHost[] = "linux-proxy-config"; | 264 const char kChromeUILinuxProxyConfigHost[] = "linux-proxy-config"; |
| (...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 760 const char kMac10_678_DeprecationURL[] = | 758 const char kMac10_678_DeprecationURL[] = |
| 761 "http://chrome.blogspot.com/2015/11/updates-to-chrome-platform-support.html"
; | 759 "http://chrome.blogspot.com/2015/11/updates-to-chrome-platform-support.html"
; |
| 762 #endif | 760 #endif |
| 763 | 761 |
| 764 #if defined(OS_WIN) | 762 #if defined(OS_WIN) |
| 765 const char kWindowsXPVistaDeprecationURL[] = | 763 const char kWindowsXPVistaDeprecationURL[] = |
| 766 "https://support.google.com/chrome/answer/95346"; | 764 "https://support.google.com/chrome/answer/95346"; |
| 767 #endif | 765 #endif |
| 768 | 766 |
| 769 } // namespace chrome | 767 } // namespace chrome |
| OLD | NEW |