| 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 667 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 678 #if defined(ENABLE_SERVICE_DISCOVERY) | 678 #if defined(ENABLE_SERVICE_DISCOVERY) |
| 679 kChromeUIDevicesHost, | 679 kChromeUIDevicesHost, |
| 680 #endif | 680 #endif |
| 681 #if defined(ENABLE_WEBRTC) | 681 #if defined(ENABLE_WEBRTC) |
| 682 kChromeUIWebRtcLogsHost, | 682 kChromeUIWebRtcLogsHost, |
| 683 #endif | 683 #endif |
| 684 }; | 684 }; |
| 685 const size_t kNumberOfChromeHostURLs = arraysize(kChromeHostURLs); | 685 const size_t kNumberOfChromeHostURLs = arraysize(kChromeHostURLs); |
| 686 | 686 |
| 687 const char* const kChromeDebugURLs[] = { | 687 const char* const kChromeDebugURLs[] = { |
| 688 content::kChromeUIBadCastURL, |
| 688 content::kChromeUICrashURL, | 689 content::kChromeUICrashURL, |
| 689 content::kChromeUIDumpURL, | 690 content::kChromeUIDumpURL, |
| 690 content::kChromeUIKillURL, | 691 content::kChromeUIKillURL, |
| 691 content::kChromeUIHangURL, | 692 content::kChromeUIHangURL, |
| 692 content::kChromeUIShorthangURL, | 693 content::kChromeUIShorthangURL, |
| 693 content::kChromeUIGpuCleanURL, | 694 content::kChromeUIGpuCleanURL, |
| 694 content::kChromeUIGpuCrashURL, | 695 content::kChromeUIGpuCrashURL, |
| 695 content::kChromeUIGpuHangURL, | 696 content::kChromeUIGpuHangURL, |
| 696 content::kChromeUIPpapiFlashCrashURL, | 697 content::kChromeUIPpapiFlashCrashURL, |
| 697 content::kChromeUIPpapiFlashHangURL, | 698 content::kChromeUIPpapiFlashHangURL, |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 732 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; | 733 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; |
| 733 #else | 734 #else |
| 734 ""; | 735 ""; |
| 735 #endif | 736 #endif |
| 736 #endif | 737 #endif |
| 737 | 738 |
| 738 const char kEasyUnlockLearnMoreUrl[] = | 739 const char kEasyUnlockLearnMoreUrl[] = |
| 739 "https://support.google.com/chromebook/?p=smart_lock"; | 740 "https://support.google.com/chromebook/?p=smart_lock"; |
| 740 | 741 |
| 741 } // namespace chrome | 742 } // namespace chrome |
| OLD | NEW |