| 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 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 const char kChromeUIThumbnailHost[] = "thumb"; | 240 const char kChromeUIThumbnailHost[] = "thumb"; |
| 241 const char kChromeUIThumbnailHost2[] = "thumb2"; | 241 const char kChromeUIThumbnailHost2[] = "thumb2"; |
| 242 const char kChromeUIThumbnailListHost[] = "thumbnails"; | 242 const char kChromeUIThumbnailListHost[] = "thumbnails"; |
| 243 const char kChromeUITouchIconHost[] = "touch-icon"; | 243 const char kChromeUITouchIconHost[] = "touch-icon"; |
| 244 const char kChromeUITranslateInternalsHost[] = "translate-internals"; | 244 const char kChromeUITranslateInternalsHost[] = "translate-internals"; |
| 245 const char kChromeUIUberFrameHost[] = "uber-frame"; | 245 const char kChromeUIUberFrameHost[] = "uber-frame"; |
| 246 const char kChromeUIUberHost[] = "chrome"; | 246 const char kChromeUIUberHost[] = "chrome"; |
| 247 const char kChromeUIUserActionsHost[] = "user-actions"; | 247 const char kChromeUIUserActionsHost[] = "user-actions"; |
| 248 const char kChromeUIVersionHost[] = "version"; | 248 const char kChromeUIVersionHost[] = "version"; |
| 249 const char kChromeUIVoiceSearchHost[] = "voicesearch"; | 249 const char kChromeUIVoiceSearchHost[] = "voicesearch"; |
| 250 const char kChromeUIWebRTCDeviceProviderHost[] = |
| 251 "webrtc-device-provider"; |
| 250 const char kChromeUIWorkersHost[] = "workers"; | 252 const char kChromeUIWorkersHost[] = "workers"; |
| 251 | 253 |
| 252 const char kChromeUIScreenshotPath[] = "screenshots"; | 254 const char kChromeUIScreenshotPath[] = "screenshots"; |
| 253 const char kChromeUIThemePath[] = "theme"; | 255 const char kChromeUIThemePath[] = "theme"; |
| 254 | 256 |
| 255 #if defined(ENABLE_PRINT_PREVIEW) | 257 #if defined(ENABLE_PRINT_PREVIEW) |
| 256 const char kChromeUIPrintHost[] = "print"; | 258 const char kChromeUIPrintHost[] = "print"; |
| 257 #endif // ENABLE_PRINT_PREVIEW | 259 #endif // ENABLE_PRINT_PREVIEW |
| 258 | 260 |
| 259 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) | 261 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) |
| (...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 714 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; | 716 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; |
| 715 #else | 717 #else |
| 716 ""; | 718 ""; |
| 717 #endif | 719 #endif |
| 718 #endif | 720 #endif |
| 719 | 721 |
| 720 const char kEasyUnlockLearnMoreUrl[] = | 722 const char kEasyUnlockLearnMoreUrl[] = |
| 721 "https://support.google.com/chromebook/?p=easy_unlock"; | 723 "https://support.google.com/chromebook/?p=easy_unlock"; |
| 722 | 724 |
| 723 } // namespace chrome | 725 } // namespace chrome |
| OLD | NEW |