| 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, |
| 629 content::kChromeUINetworkViewCacheHost, | 630 content::kChromeUINetworkViewCacheHost, |
| 630 content::kChromeUIServiceWorkerInternalsHost, | 631 content::kChromeUIServiceWorkerInternalsHost, |
| 631 content::kChromeUITracingHost, | 632 content::kChromeUITracingHost, |
| 632 content::kChromeUIWebRTCInternalsHost, | 633 content::kChromeUIWebRTCInternalsHost, |
| 633 #if !defined(OS_ANDROID) | 634 #if !defined(OS_ANDROID) |
| 634 #if !defined(OS_CHROMEOS) | 635 #if !defined(OS_CHROMEOS) |
| 635 kChromeUIAppLauncherPageHost, | 636 kChromeUIAppLauncherPageHost, |
| 636 #endif | 637 #endif |
| 637 kChromeUIBookmarksHost, | 638 kChromeUIBookmarksHost, |
| 638 kChromeUIDownloadsHost, | 639 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"; | 748 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; |
| 748 #else | 749 #else |
| 749 ""; | 750 ""; |
| 750 #endif | 751 #endif |
| 751 #endif | 752 #endif |
| 752 | 753 |
| 753 const char kEasyUnlockLearnMoreUrl[] = | 754 const char kEasyUnlockLearnMoreUrl[] = |
| 754 "https://support.google.com/chromebook/?p=smart_lock"; | 755 "https://support.google.com/chromebook/?p=smart_lock"; |
| 755 | 756 |
| 756 } // namespace chrome | 757 } // namespace chrome |
| OLD | NEW |