| 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 // 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 extern const char kChromeUIUserManagerURL[]; | 69 extern const char kChromeUIUserManagerURL[]; |
| 70 extern const char kChromeUIPrintURL[]; | 70 extern const char kChromeUIPrintURL[]; |
| 71 extern const char kChromeUIQuitURL[]; | 71 extern const char kChromeUIQuitURL[]; |
| 72 extern const char kChromeUIRestartURL[]; | 72 extern const char kChromeUIRestartURL[]; |
| 73 extern const char kChromeUISessionFaviconURL[]; | 73 extern const char kChromeUISessionFaviconURL[]; |
| 74 extern const char kChromeUISettingsURL[]; | 74 extern const char kChromeUISettingsURL[]; |
| 75 extern const char kChromeUISettingsFrameURL[]; | 75 extern const char kChromeUISettingsFrameURL[]; |
| 76 extern const char kChromeUISuggestions[]; | 76 extern const char kChromeUISuggestions[]; |
| 77 extern const char kChromeUISuggestionsInternalsURL[]; | 77 extern const char kChromeUISuggestionsInternalsURL[]; |
| 78 extern const char kChromeUISSLClientCertificateSelectorURL[]; | 78 extern const char kChromeUISSLClientCertificateSelectorURL[]; |
| 79 extern const char kChromeUITaskManagerURL[]; | |
| 80 extern const char kChromeUITermsURL[]; | 79 extern const char kChromeUITermsURL[]; |
| 81 extern const char kChromeUIThemeURL[]; | 80 extern const char kChromeUIThemeURL[]; |
| 82 extern const char kChromeUIThumbnailURL[]; | 81 extern const char kChromeUIThumbnailURL[]; |
| 83 extern const char kChromeUIThumbnailListURL[]; | 82 extern const char kChromeUIThumbnailListURL[]; |
| 84 extern const char kChromeUIUberURL[]; | 83 extern const char kChromeUIUberURL[]; |
| 85 extern const char kChromeUIUberFrameURL[]; | 84 extern const char kChromeUIUberFrameURL[]; |
| 86 extern const char kChromeUIUserActionsURL[]; | 85 extern const char kChromeUIUserActionsURL[]; |
| 87 extern const char kChromeUIVersionURL[]; | 86 extern const char kChromeUIVersionURL[]; |
| 88 | 87 |
| 89 #if defined(OS_ANDROID) | 88 #if defined(OS_ANDROID) |
| (...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 539 | 538 |
| 540 // The URL for the "Learn more" link the the Easy Unlock settings. | 539 // The URL for the "Learn more" link the the Easy Unlock settings. |
| 541 extern const char kEasyUnlockLearnMoreUrl[]; | 540 extern const char kEasyUnlockLearnMoreUrl[]; |
| 542 | 541 |
| 543 // The URL to the device management page in the Easy Unlock settings. | 542 // The URL to the device management page in the Easy Unlock settings. |
| 544 extern const char kEasyUnlockManagementUrl[]; | 543 extern const char kEasyUnlockManagementUrl[]; |
| 545 | 544 |
| 546 } // namespace chrome | 545 } // namespace chrome |
| 547 | 546 |
| 548 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 547 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |