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 608 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
619 kChromeUITranslateInternalsHost, | 619 kChromeUITranslateInternalsHost, |
620 kChromeUIUserActionsHost, | 620 kChromeUIUserActionsHost, |
621 kChromeUIVersionHost, | 621 kChromeUIVersionHost, |
622 content::kChromeUIAccessibilityHost, | 622 content::kChromeUIAccessibilityHost, |
623 content::kChromeUIAppCacheInternalsHost, | 623 content::kChromeUIAppCacheInternalsHost, |
624 content::kChromeUIBlobInternalsHost, | 624 content::kChromeUIBlobInternalsHost, |
625 content::kChromeUIGpuHost, | 625 content::kChromeUIGpuHost, |
626 content::kChromeUIHistogramHost, | 626 content::kChromeUIHistogramHost, |
627 content::kChromeUIIndexedDBInternalsHost, | 627 content::kChromeUIIndexedDBInternalsHost, |
628 content::kChromeUIMediaInternalsHost, | 628 content::kChromeUIMediaInternalsHost, |
| 629 content::kChromeUINetworkErrorHost, |
| 630 content::kChromeUINetworkErrorsListingHost, |
629 content::kChromeUINetworkViewCacheHost, | 631 content::kChromeUINetworkViewCacheHost, |
630 content::kChromeUIServiceWorkerInternalsHost, | 632 content::kChromeUIServiceWorkerInternalsHost, |
631 content::kChromeUITracingHost, | 633 content::kChromeUITracingHost, |
632 content::kChromeUIWebRTCInternalsHost, | 634 content::kChromeUIWebRTCInternalsHost, |
633 #if !defined(OS_ANDROID) | 635 #if !defined(OS_ANDROID) |
634 #if !defined(OS_CHROMEOS) | 636 #if !defined(OS_CHROMEOS) |
635 kChromeUIAppLauncherPageHost, | 637 kChromeUIAppLauncherPageHost, |
636 #endif | 638 #endif |
637 kChromeUIBookmarksHost, | 639 kChromeUIBookmarksHost, |
638 kChromeUIDownloadsHost, | 640 kChromeUIDownloadsHost, |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
747 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; | 749 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; |
748 #else | 750 #else |
749 ""; | 751 ""; |
750 #endif | 752 #endif |
751 #endif | 753 #endif |
752 | 754 |
753 const char kEasyUnlockLearnMoreUrl[] = | 755 const char kEasyUnlockLearnMoreUrl[] = |
754 "https://support.google.com/chromebook/?p=smart_lock"; | 756 "https://support.google.com/chromebook/?p=smart_lock"; |
755 | 757 |
756 } // namespace chrome | 758 } // namespace chrome |
OLD | NEW |