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

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

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 // Contains constants for known URLs and portions thereof. 5 // Contains constants for known URLs and portions thereof.
6 6
7 #ifndef CHROME_COMMON_URL_CONSTANTS_H_ 7 #ifndef CHROME_COMMON_URL_CONSTANTS_H_
8 #define CHROME_COMMON_URL_CONSTANTS_H_ 8 #define CHROME_COMMON_URL_CONSTANTS_H_
9 9
10 #include <string> 10 #include <string>
(...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after
459 // The URL for the "Learn more" link for natural scrolling on ChromeOS. 459 // The URL for the "Learn more" link for natural scrolling on ChromeOS.
460 extern const char kNaturalScrollHelpURL[]; 460 extern const char kNaturalScrollHelpURL[];
461 461
462 // The URL for the Learn More page about enterprise enrolled devices. 462 // The URL for the Learn More page about enterprise enrolled devices.
463 extern const char kLearnMoreEnterpriseURL[]; 463 extern const char kLearnMoreEnterpriseURL[];
464 #endif 464 #endif
465 465
466 // The URL for the Learn More link of the non-CWS bubble. 466 // The URL for the Learn More link of the non-CWS bubble.
467 extern const char kRemoveNonCWSExtensionURL[]; 467 extern const char kRemoveNonCWSExtensionURL[];
468 468
469 // The URL for the Learn More link for the corrupt extension message.
470 extern const char kCorruptExtensionURL[];
471
469 extern const char kNotificationsHelpURL[]; 472 extern const char kNotificationsHelpURL[];
470 473
471 // The Welcome Notification More Info URL. 474 // The Welcome Notification More Info URL.
472 extern const char kNotificationWelcomeLearnMoreURL[]; 475 extern const char kNotificationWelcomeLearnMoreURL[];
473 476
474 // Gets the hosts/domains that are shown in chrome://chrome-urls. 477 // Gets the hosts/domains that are shown in chrome://chrome-urls.
475 extern const char* const kChromeHostURLs[]; 478 extern const char* const kChromeHostURLs[];
476 extern const size_t kNumberOfChromeHostURLs; 479 extern const size_t kNumberOfChromeHostURLs;
477 480
478 // "Debug" pages which are dangerous and not for general consumption. 481 // "Debug" pages which are dangerous and not for general consumption.
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
541 544
542 // The URL for the "Learn more" link the the Easy Unlock settings. 545 // The URL for the "Learn more" link the the Easy Unlock settings.
543 extern const char kEasyUnlockLearnMoreUrl[]; 546 extern const char kEasyUnlockLearnMoreUrl[];
544 547
545 // The URL to the device management page in the Easy Unlock settings. 548 // The URL to the device management page in the Easy Unlock settings.
546 extern const char kEasyUnlockManagementUrl[]; 549 extern const char kEasyUnlockManagementUrl[];
547 550
548 } // namespace chrome 551 } // namespace chrome
549 552
550 #endif // CHROME_COMMON_URL_CONSTANTS_H_ 553 #endif // CHROME_COMMON_URL_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698