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 530 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
541 | 541 |
542 #if defined(OS_CHROMEOS) | 542 #if defined(OS_CHROMEOS) |
543 const char kLearnMoreEnterpriseURL[] = | 543 const char kLearnMoreEnterpriseURL[] = |
544 "https://support.google.com/chromeos/bin/answer.py?answer=2535613"; | 544 "https://support.google.com/chromeos/bin/answer.py?answer=2535613"; |
545 #endif | 545 #endif |
546 | 546 |
547 const char kRemoveNonCWSExtensionURL[] = | 547 const char kRemoveNonCWSExtensionURL[] = |
548 "https://support.google.com/chrome/answer/2811969?" | 548 "https://support.google.com/chrome/answer/2811969?" |
549 "p=ui_remove_non_cws_extensions&rd=1"; | 549 "p=ui_remove_non_cws_extensions&rd=1"; |
550 | 550 |
| 551 const char kCorruptExtensionURL[] = |
| 552 "https://support.google.com/chrome/?p=settings_corrupt_extension"; |
| 553 |
551 const char kNotificationsHelpURL[] = | 554 const char kNotificationsHelpURL[] = |
552 "https://support.google.com/chrome/?p=ui_notifications"; | 555 "https://support.google.com/chrome/?p=ui_notifications"; |
553 | 556 |
554 const char kNotificationWelcomeLearnMoreURL[] = | 557 const char kNotificationWelcomeLearnMoreURL[] = |
555 "https://support.google.com/chrome/?p=ib_google_now_welcome"; | 558 "https://support.google.com/chrome/?p=ib_google_now_welcome"; |
556 | 559 |
557 // Add hosts here to be included in chrome://chrome-urls (about:about). | 560 // Add hosts here to be included in chrome://chrome-urls (about:about). |
558 // These hosts will also be suggested by BuiltinProvider. | 561 // These hosts will also be suggested by BuiltinProvider. |
559 const char* const kChromeHostURLs[] = { | 562 const char* const kChromeHostURLs[] = { |
560 kChromeUICacheHost, | 563 kChromeUICacheHost, |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
707 ""; | 710 ""; |
708 #endif | 711 #endif |
709 #endif | 712 #endif |
710 | 713 |
711 // TODO(tengs): Replace with real URL when ready. | 714 // TODO(tengs): Replace with real URL when ready. |
712 const char kEasyUnlockLearnMoreUrl[] = | 715 const char kEasyUnlockLearnMoreUrl[] = |
713 "https://support.google.com/chromebook/?p=easy_unlock"; | 716 "https://support.google.com/chromebook/?p=easy_unlock"; |
714 const char kEasyUnlockManagementUrl[] = "https://chrome.com"; | 717 const char kEasyUnlockManagementUrl[] = "https://chrome.com"; |
715 | 718 |
716 } // namespace chrome | 719 } // namespace chrome |
OLD | NEW |