| 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 <stddef.h> | 10 #include <stddef.h> |
| (...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 319 #if defined(ENABLE_MEDIA_ROUTER) | 319 #if defined(ENABLE_MEDIA_ROUTER) |
| 320 extern const char kChromeUIMediaRouterHost[]; | 320 extern const char kChromeUIMediaRouterHost[]; |
| 321 #if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_CHROMEOS) | 321 #if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_CHROMEOS) |
| 322 extern const char kChromeUICastHost[]; | 322 extern const char kChromeUICastHost[]; |
| 323 #endif | 323 #endif |
| 324 #endif | 324 #endif |
| 325 | 325 |
| 326 // Options sub-pages. | 326 // Options sub-pages. |
| 327 extern const char kAutofillSubPage[]; | 327 extern const char kAutofillSubPage[]; |
| 328 extern const char kClearBrowserDataSubPage[]; | 328 extern const char kClearBrowserDataSubPage[]; |
| 329 extern const char kContentSettingsExceptionsSubPage[]; | |
| 330 extern const char kContentSettingsSubPage[]; | 329 extern const char kContentSettingsSubPage[]; |
| 331 extern const char kCreateProfileSubPage[]; | 330 extern const char kCreateProfileSubPage[]; |
| 331 extern const char kDeprecatedOptionsContentSettingsExceptionsSubPage[]; |
| 332 extern const char kExtensionsSubPage[]; | 332 extern const char kExtensionsSubPage[]; |
| 333 extern const char kHandlerSettingsSubPage[]; | 333 extern const char kHandlerSettingsSubPage[]; |
| 334 extern const char kImportDataSubPage[]; | 334 extern const char kImportDataSubPage[]; |
| 335 extern const char kLanguageOptionsSubPage[]; | 335 extern const char kLanguageOptionsSubPage[]; |
| 336 extern const char kManageProfileSubPage[]; | 336 extern const char kManageProfileSubPage[]; |
| 337 extern const char kPasswordManagerSubPage[]; | 337 extern const char kPasswordManagerSubPage[]; |
| 338 extern const char kResetProfileSettingsSubPage[]; | 338 extern const char kResetProfileSettingsSubPage[]; |
| 339 extern const char kSearchEnginesSubPage[]; | 339 extern const char kSearchEnginesSubPage[]; |
| 340 extern const char kSignOutSubPage[]; | 340 extern const char kSignOutSubPage[]; |
| 341 extern const char kSyncSetupSubPage[]; | 341 extern const char kSyncSetupSubPage[]; |
| (...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 605 extern const char kChooserUsbOverviewURL[]; | 605 extern const char kChooserUsbOverviewURL[]; |
| 606 | 606 |
| 607 #if defined(OS_CHROMEOS) | 607 #if defined(OS_CHROMEOS) |
| 608 // The URL for EOL notification | 608 // The URL for EOL notification |
| 609 extern const char kEolNotificationURL[]; | 609 extern const char kEolNotificationURL[]; |
| 610 #endif | 610 #endif |
| 611 | 611 |
| 612 } // namespace chrome | 612 } // namespace chrome |
| 613 | 613 |
| 614 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 614 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |