| 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 544 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 555 "https://support.google.com/chrome/?p=ib_google_now_welcome"; | 555 "https://support.google.com/chrome/?p=ib_google_now_welcome"; |
| 556 | 556 |
| 557 // Add hosts here to be included in chrome://chrome-urls (about:about). | 557 // Add hosts here to be included in chrome://chrome-urls (about:about). |
| 558 // These hosts will also be suggested by BuiltinProvider. | 558 // These hosts will also be suggested by BuiltinProvider. |
| 559 const char* const kChromeHostURLs[] = { | 559 const char* const kChromeHostURLs[] = { |
| 560 kChromeUICacheHost, | 560 kChromeUICacheHost, |
| 561 kChromeUIChromeURLsHost, | 561 kChromeUIChromeURLsHost, |
| 562 kChromeUIComponentsHost, | 562 kChromeUIComponentsHost, |
| 563 kChromeUICrashesHost, | 563 kChromeUICrashesHost, |
| 564 kChromeUICreditsHost, | 564 kChromeUICreditsHost, |
| 565 #if defined(ENABLE_MDNS) | 565 #if defined(ENABLE_SERVICE_DISCOVERY) |
| 566 kChromeUIDevicesHost, | 566 kChromeUIDevicesHost, |
| 567 #endif | 567 #endif |
| 568 kChromeUIDNSHost, | 568 kChromeUIDNSHost, |
| 569 kChromeUIFlagsHost, | 569 kChromeUIFlagsHost, |
| 570 kChromeUIGCMInternalsHost, | 570 kChromeUIGCMInternalsHost, |
| 571 kChromeUIHelpHost, | 571 kChromeUIHelpHost, |
| 572 kChromeUIHistoryHost, | 572 kChromeUIHistoryHost, |
| 573 kChromeUIInvalidationsHost, | 573 kChromeUIInvalidationsHost, |
| 574 kChromeUIIPCHost, | 574 kChromeUIIPCHost, |
| 575 kChromeUIMemoryHost, | 575 kChromeUIMemoryHost, |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 707 ""; | 707 ""; |
| 708 #endif | 708 #endif |
| 709 #endif | 709 #endif |
| 710 | 710 |
| 711 // TODO(tengs): Replace with real URL when ready. | 711 // TODO(tengs): Replace with real URL when ready. |
| 712 const char kEasyUnlockLearnMoreUrl[] = | 712 const char kEasyUnlockLearnMoreUrl[] = |
| 713 "https://support.google.com/chromebook/?p=easy_unlock"; | 713 "https://support.google.com/chromebook/?p=easy_unlock"; |
| 714 const char kEasyUnlockManagementUrl[] = "https://chrome.com"; | 714 const char kEasyUnlockManagementUrl[] = "https://chrome.com"; |
| 715 | 715 |
| 716 } // namespace chrome | 716 } // namespace chrome |
| OLD | NEW |