| 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 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 551 "https://support.google.com/chrome/?p=ib_google_now_welcome"; | 551 "https://support.google.com/chrome/?p=ib_google_now_welcome"; |
| 552 | 552 |
| 553 // Add hosts here to be included in chrome://chrome-urls (about:about). | 553 // Add hosts here to be included in chrome://chrome-urls (about:about). |
| 554 // These hosts will also be suggested by BuiltinProvider. | 554 // These hosts will also be suggested by BuiltinProvider. |
| 555 const char* const kChromeHostURLs[] = { | 555 const char* const kChromeHostURLs[] = { |
| 556 kChromeUICacheHost, | 556 kChromeUICacheHost, |
| 557 kChromeUIChromeURLsHost, | 557 kChromeUIChromeURLsHost, |
| 558 kChromeUIComponentsHost, | 558 kChromeUIComponentsHost, |
| 559 kChromeUICrashesHost, | 559 kChromeUICrashesHost, |
| 560 kChromeUICreditsHost, | 560 kChromeUICreditsHost, |
| 561 #if defined(ENABLE_MDNS) | 561 #if defined(ENABLE_SERVICE_DISCOVERY) |
| 562 kChromeUIDevicesHost, | 562 kChromeUIDevicesHost, |
| 563 #endif | 563 #endif |
| 564 kChromeUIDNSHost, | 564 kChromeUIDNSHost, |
| 565 kChromeUIFlagsHost, | 565 kChromeUIFlagsHost, |
| 566 kChromeUIGCMInternalsHost, | 566 kChromeUIGCMInternalsHost, |
| 567 kChromeUIHelpHost, | 567 kChromeUIHelpHost, |
| 568 kChromeUIHistoryHost, | 568 kChromeUIHistoryHost, |
| 569 kChromeUIInvalidationsHost, | 569 kChromeUIInvalidationsHost, |
| 570 kChromeUIIPCHost, | 570 kChromeUIIPCHost, |
| 571 kChromeUIMemoryHost, | 571 kChromeUIMemoryHost, |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 697 #if defined(OS_MACOSX) | 697 #if defined(OS_MACOSX) |
| 698 const char kMac32BitDeprecationURL[] = | 698 const char kMac32BitDeprecationURL[] = |
| 699 #if !defined(ARCH_CPU_64_BITS) | 699 #if !defined(ARCH_CPU_64_BITS) |
| 700 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; | 700 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; |
| 701 #else | 701 #else |
| 702 ""; | 702 ""; |
| 703 #endif | 703 #endif |
| 704 #endif | 704 #endif |
| 705 | 705 |
| 706 } // namespace chrome | 706 } // namespace chrome |
| OLD | NEW |