| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 #ifndef IOS_CHROME_BROWSER_CHROME_URL_CONSTANTS_H_ | 5 #ifndef IOS_CHROME_BROWSER_CHROME_URL_CONSTANTS_H_ |
| 6 #define IOS_CHROME_BROWSER_CHROME_URL_CONSTANTS_H_ | 6 #define IOS_CHROME_BROWSER_CHROME_URL_CONSTANTS_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 // Contains constants for known URLs and portions thereof. | 10 // Contains constants for known URLs and portions thereof. |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 extern const char kChromeUITermsHost[]; | 53 extern const char kChromeUITermsHost[]; |
| 54 extern const char kChromeUIVersionHost[]; | 54 extern const char kChromeUIVersionHost[]; |
| 55 | 55 |
| 56 // Gets the hosts/domains that are shown in chrome://chrome-urls. | 56 // Gets the hosts/domains that are shown in chrome://chrome-urls. |
| 57 extern const char* const kChromeHostURLs[]; | 57 extern const char* const kChromeHostURLs[]; |
| 58 extern const size_t kNumberOfChromeHostURLs; | 58 extern const size_t kNumberOfChromeHostURLs; |
| 59 | 59 |
| 60 // URL to the sync google dashboard. | 60 // URL to the sync google dashboard. |
| 61 extern const char kSyncGoogleDashboardURL[]; | 61 extern const char kSyncGoogleDashboardURL[]; |
| 62 | 62 |
| 63 // URL to the password manager account dashboard. | |
| 64 extern const char kPasswordManagerAccountDashboardURL[]; | |
| 65 | |
| 66 // "What do these mean?" URL for the Page Info bubble. | 63 // "What do these mean?" URL for the Page Info bubble. |
| 67 extern const char kPageInfoHelpCenterURL[]; | 64 extern const char kPageInfoHelpCenterURL[]; |
| 68 | 65 |
| 69 // "Learn more" URL for "Aw snap" page when showing "Reload" button. | 66 // "Learn more" URL for "Aw snap" page when showing "Reload" button. |
| 70 extern const char kCrashReasonURL[]; | 67 extern const char kCrashReasonURL[]; |
| 71 | 68 |
| 72 // "Learn more" URL for the Privacy section under Options. | 69 // "Learn more" URL for the Privacy section under Options. |
| 73 extern const char kPrivacyLearnMoreURL[]; | 70 extern const char kPrivacyLearnMoreURL[]; |
| 74 | 71 |
| 75 // "Learn more" URL for the "Do not track" setting in the privacy section. | 72 // "Learn more" URL for the "Do not track" setting in the privacy section. |
| 76 extern const char kDoNotTrackLearnMoreURL[]; | 73 extern const char kDoNotTrackLearnMoreURL[]; |
| 77 | 74 |
| 78 // The URL for the "Learn more" page on sync encryption. | 75 // The URL for the "Learn more" page on sync encryption. |
| 79 extern const char kSyncEncryptionHelpURL[]; | 76 extern const char kSyncEncryptionHelpURL[]; |
| 80 | 77 |
| 81 #endif // IOS_CHROME_BROWSER_CHROME_URL_CONSTANTS_H_ | 78 #endif // IOS_CHROME_BROWSER_CHROME_URL_CONSTANTS_H_ |
| OLD | NEW |