| 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 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 extern const char kClearBrowserDataSubPage[]; | 326 extern const char kClearBrowserDataSubPage[]; |
| 327 extern const char kContentSettingsExceptionsSubPage[]; | 327 extern const char kContentSettingsExceptionsSubPage[]; |
| 328 extern const char kContentSettingsSubPage[]; | 328 extern const char kContentSettingsSubPage[]; |
| 329 extern const char kCreateProfileSubPage[]; | 329 extern const char kCreateProfileSubPage[]; |
| 330 extern const char kExtensionsSubPage[]; | 330 extern const char kExtensionsSubPage[]; |
| 331 extern const char kHandlerSettingsSubPage[]; | 331 extern const char kHandlerSettingsSubPage[]; |
| 332 extern const char kImportDataSubPage[]; | 332 extern const char kImportDataSubPage[]; |
| 333 extern const char kLanguageOptionsSubPage[]; | 333 extern const char kLanguageOptionsSubPage[]; |
| 334 extern const char kManageProfileSubPage[]; | 334 extern const char kManageProfileSubPage[]; |
| 335 extern const char kPasswordManagerSubPage[]; | 335 extern const char kPasswordManagerSubPage[]; |
| 336 extern const char kPowerOptionsSubPage[]; | |
| 337 extern const char kResetProfileSettingsSubPage[]; | 336 extern const char kResetProfileSettingsSubPage[]; |
| 338 extern const char kSearchEnginesSubPage[]; | 337 extern const char kSearchEnginesSubPage[]; |
| 339 extern const char kSearchSubPage[]; | 338 extern const char kSearchSubPage[]; |
| 340 extern const char kSearchUsersSubPage[]; | |
| 341 extern const char kSignOutSubPage[]; | 339 extern const char kSignOutSubPage[]; |
| 342 extern const char kSyncSetupSubPage[]; | 340 extern const char kSyncSetupSubPage[]; |
| 343 extern const char kTriggeredResetProfileSettingsSubPage[]; | 341 extern const char kTriggeredResetProfileSettingsSubPage[]; |
| 344 #if defined(OS_CHROMEOS) | 342 #if defined(OS_CHROMEOS) |
| 345 extern const char kInternetOptionsSubPage[]; | 343 extern const char kInternetOptionsSubPage[]; |
| 344 extern const char kPowerOptionsSubPage[]; |
| 346 #endif | 345 #endif |
| 347 | 346 |
| 348 // Extensions sub pages. | 347 // Extensions sub pages. |
| 349 extern const char kExtensionConfigureCommandsSubPage[]; | 348 extern const char kExtensionConfigureCommandsSubPage[]; |
| 350 | 349 |
| 351 // URLs used to indicate that an extension resource load request | 350 // URLs used to indicate that an extension resource load request |
| 352 // was invalid. | 351 // was invalid. |
| 353 extern const char kExtensionInvalidRequestURL[]; | 352 extern const char kExtensionInvalidRequestURL[]; |
| 354 extern const char kExtensionResourceInvalidRequestURL[]; | 353 extern const char kExtensionResourceInvalidRequestURL[]; |
| 355 | 354 |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 601 extern const char kChooserUsbOverviewURL[]; | 600 extern const char kChooserUsbOverviewURL[]; |
| 602 | 601 |
| 603 #if defined(OS_CHROMEOS) | 602 #if defined(OS_CHROMEOS) |
| 604 // The URL for EOL notification | 603 // The URL for EOL notification |
| 605 extern const char kEolNotificationURL[]; | 604 extern const char kEolNotificationURL[]; |
| 606 #endif | 605 #endif |
| 607 | 606 |
| 608 } // namespace chrome | 607 } // namespace chrome |
| 609 | 608 |
| 610 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 609 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |