Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(606)

Side by Side Diff: chrome/common/url_constants.cc

Issue 265563004: Add a note to chrome://extensions to explain when an extension has been... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add enum Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 533 matching lines...) Expand 10 before | Expand all | Expand 10 after
544 544
545 #if defined(OS_CHROMEOS) 545 #if defined(OS_CHROMEOS)
546 const char kLearnMoreEnterpriseURL[] = 546 const char kLearnMoreEnterpriseURL[] =
547 "https://support.google.com/chromeos/bin/answer.py?answer=2535613"; 547 "https://support.google.com/chromeos/bin/answer.py?answer=2535613";
548 #endif 548 #endif
549 549
550 const char kRemoveNonCWSExtensionURL[] = 550 const char kRemoveNonCWSExtensionURL[] =
551 "https://support.google.com/chrome/answer/2811969?" 551 "https://support.google.com/chrome/answer/2811969?"
552 "p=ui_remove_non_cws_extensions&rd=1"; 552 "p=ui_remove_non_cws_extensions&rd=1";
553 553
554 const char kCorruptExtensionURL[] =
555 "https://support.google.com/chrome/?p=settings_corrupt_extension";
556
554 const char kNotificationsHelpURL[] = 557 const char kNotificationsHelpURL[] =
555 "https://support.google.com/chrome/?p=ui_notifications"; 558 "https://support.google.com/chrome/?p=ui_notifications";
556 559
557 const char kNotificationWelcomeLearnMoreURL[] = 560 const char kNotificationWelcomeLearnMoreURL[] =
558 "https://support.google.com/chrome/?p=ib_google_now_welcome"; 561 "https://support.google.com/chrome/?p=ib_google_now_welcome";
559 562
560 // Add hosts here to be included in chrome://chrome-urls (about:about). 563 // Add hosts here to be included in chrome://chrome-urls (about:about).
561 // These hosts will also be suggested by BuiltinProvider. 564 // These hosts will also be suggested by BuiltinProvider.
562 const char* const kChromeHostURLs[] = { 565 const char* const kChromeHostURLs[] = {
563 kChromeUICacheHost, 566 kChromeUICacheHost,
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
710 ""; 713 "";
711 #endif 714 #endif
712 #endif 715 #endif
713 716
714 // TODO(tengs): Replace with real URL when ready. 717 // TODO(tengs): Replace with real URL when ready.
715 const char kEasyUnlockLearnMoreUrl[] = 718 const char kEasyUnlockLearnMoreUrl[] =
716 "https://support.google.com/chromebook/?p=easy_unlock"; 719 "https://support.google.com/chromebook/?p=easy_unlock";
717 const char kEasyUnlockManagementUrl[] = "https://chrome.com"; 720 const char kEasyUnlockManagementUrl[] = "https://chrome.com";
718 721
719 } // namespace chrome 722 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698