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 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
302 | 302 |
303 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA) | 303 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA) |
304 extern const char kChromeUITabModalConfirmDialogHost[]; | 304 extern const char kChromeUITabModalConfirmDialogHost[]; |
305 #endif | 305 #endif |
306 | 306 |
307 #if defined(ENABLE_WEBRTC) | 307 #if defined(ENABLE_WEBRTC) |
308 extern const char kChromeUIWebRtcLogsHost[]; | 308 extern const char kChromeUIWebRtcLogsHost[]; |
309 #endif | 309 #endif |
310 | 310 |
311 // Options sub-pages. | 311 // Options sub-pages. |
| 312 extern const char kAutofillEditAddressSubPage[]; |
312 extern const char kAutofillSubPage[]; | 313 extern const char kAutofillSubPage[]; |
313 extern const char kClearBrowserDataSubPage[]; | 314 extern const char kClearBrowserDataSubPage[]; |
314 extern const char kContentSettingsExceptionsSubPage[]; | 315 extern const char kContentSettingsExceptionsSubPage[]; |
315 extern const char kContentSettingsSubPage[]; | 316 extern const char kContentSettingsSubPage[]; |
316 extern const char kCreateProfileSubPage[]; | 317 extern const char kCreateProfileSubPage[]; |
317 extern const char kExtensionsSubPage[]; | 318 extern const char kExtensionsSubPage[]; |
318 extern const char kHandlerSettingsSubPage[]; | 319 extern const char kHandlerSettingsSubPage[]; |
319 extern const char kImportDataSubPage[]; | 320 extern const char kImportDataSubPage[]; |
320 extern const char kLanguageOptionsSubPage[]; | 321 extern const char kLanguageOptionsSubPage[]; |
321 extern const char kManageProfileSubPage[]; | 322 extern const char kManageProfileSubPage[]; |
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
543 // The URL for the 32-bit Mac deprecation help center article | 544 // The URL for the 32-bit Mac deprecation help center article |
544 extern const char kMac32BitDeprecationURL[]; | 545 extern const char kMac32BitDeprecationURL[]; |
545 #endif | 546 #endif |
546 | 547 |
547 // The URL for the "Learn more" link the the Easy Unlock settings. | 548 // The URL for the "Learn more" link the the Easy Unlock settings. |
548 extern const char kEasyUnlockLearnMoreUrl[]; | 549 extern const char kEasyUnlockLearnMoreUrl[]; |
549 | 550 |
550 } // namespace chrome | 551 } // namespace chrome |
551 | 552 |
552 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 553 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |