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 539 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
550 | 550 |
551 #if defined(OS_CHROMEOS) | 551 #if defined(OS_CHROMEOS) |
552 const char kLearnMoreEnterpriseURL[] = | 552 const char kLearnMoreEnterpriseURL[] = |
553 "https://support.google.com/chromeos/bin/answer.py?answer=2535613"; | 553 "https://support.google.com/chromeos/bin/answer.py?answer=2535613"; |
554 #endif | 554 #endif |
555 | 555 |
556 const char kRemoveNonCWSExtensionURL[] = | 556 const char kRemoveNonCWSExtensionURL[] = |
557 "https://support.google.com/chrome/answer/2811969?" | 557 "https://support.google.com/chrome/answer/2811969?" |
558 "p=ui_remove_non_cws_extensions&rd=1"; | 558 "p=ui_remove_non_cws_extensions&rd=1"; |
559 | 559 |
560 const char kCorruptExtensionURL[] = | |
561 "https://support.google.com/chrome/?p=settings_corrupt_extension"; | |
562 | |
563 const char kNotificationsHelpURL[] = | 560 const char kNotificationsHelpURL[] = |
564 "https://support.google.com/chrome/?p=ui_notifications"; | 561 "https://support.google.com/chrome/?p=ui_notifications"; |
565 | 562 |
566 const char kNotificationWelcomeLearnMoreURL[] = | 563 const char kNotificationWelcomeLearnMoreURL[] = |
567 "https://support.google.com/chrome/?p=ib_google_now_welcome"; | 564 "https://support.google.com/chrome/?p=ib_google_now_welcome"; |
568 | 565 |
569 // Add hosts here to be included in chrome://chrome-urls (about:about). | 566 // Add hosts here to be included in chrome://chrome-urls (about:about). |
570 // These hosts will also be suggested by BuiltinProvider. | 567 // These hosts will also be suggested by BuiltinProvider. |
571 const char* const kChromeHostURLs[] = { | 568 const char* const kChromeHostURLs[] = { |
572 kChromeUICacheHost, | 569 kChromeUICacheHost, |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
720 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; | 717 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; |
721 #else | 718 #else |
722 ""; | 719 ""; |
723 #endif | 720 #endif |
724 #endif | 721 #endif |
725 | 722 |
726 const char kEasyUnlockLearnMoreUrl[] = | 723 const char kEasyUnlockLearnMoreUrl[] = |
727 "https://support.google.com/chromebook/answer/6070209"; | 724 "https://support.google.com/chromebook/answer/6070209"; |
728 | 725 |
729 } // namespace chrome | 726 } // namespace chrome |
OLD | NEW |