| 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 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 330 extern const char kContentSettingsSubPage[]; | 330 extern const char kContentSettingsSubPage[]; |
| 331 extern const char kCreateProfileSubPage[]; | 331 extern const char kCreateProfileSubPage[]; |
| 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 kSearchSubPage[]; | |
| 341 extern const char kSignOutSubPage[]; | 340 extern const char kSignOutSubPage[]; |
| 342 extern const char kSyncSetupSubPage[]; | 341 extern const char kSyncSetupSubPage[]; |
| 343 extern const char kTriggeredResetProfileSettingsSubPage[]; | 342 extern const char kTriggeredResetProfileSettingsSubPage[]; |
| 344 #if defined(OS_CHROMEOS) | 343 #if defined(OS_CHROMEOS) |
| 344 extern const char kAccessibilitySubPage[]; |
| 345 extern const char kBluetoothSubPage[]; |
| 346 extern const char kDateTimeSubPage[]; |
| 347 extern const char kDeprecatedOptionsSearchSubPage[]; |
| 345 extern const char kInternetOptionsSubPage[]; | 348 extern const char kInternetOptionsSubPage[]; |
| 346 extern const char kPowerOptionsSubPage[]; | 349 extern const char kPowerOptionsSubPage[]; |
| 347 #endif | 350 #endif |
| 348 | 351 |
| 349 // Extensions sub pages. | 352 // Extensions sub pages. |
| 350 extern const char kExtensionConfigureCommandsSubPage[]; | 353 extern const char kExtensionConfigureCommandsSubPage[]; |
| 351 | 354 |
| 352 // URLs used to indicate that an extension resource load request | 355 // URLs used to indicate that an extension resource load request |
| 353 // was invalid. | 356 // was invalid. |
| 354 extern const char kExtensionInvalidRequestURL[]; | 357 extern const char kExtensionInvalidRequestURL[]; |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 602 extern const char kChooserUsbOverviewURL[]; | 605 extern const char kChooserUsbOverviewURL[]; |
| 603 | 606 |
| 604 #if defined(OS_CHROMEOS) | 607 #if defined(OS_CHROMEOS) |
| 605 // The URL for EOL notification | 608 // The URL for EOL notification |
| 606 extern const char kEolNotificationURL[]; | 609 extern const char kEolNotificationURL[]; |
| 607 #endif | 610 #endif |
| 608 | 611 |
| 609 } // namespace chrome | 612 } // namespace chrome |
| 610 | 613 |
| 611 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 614 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |