| 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 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 323 extern const char kHandlerSettingsSubPage[]; | 323 extern const char kHandlerSettingsSubPage[]; |
| 324 extern const char kImportDataSubPage[]; | 324 extern const char kImportDataSubPage[]; |
| 325 extern const char kLanguageOptionsSubPage[]; | 325 extern const char kLanguageOptionsSubPage[]; |
| 326 extern const char kManageProfileSubPage[]; | 326 extern const char kManageProfileSubPage[]; |
| 327 extern const char kPasswordManagerSubPage[]; | 327 extern const char kPasswordManagerSubPage[]; |
| 328 extern const char kPowerOptionsSubPage[]; | 328 extern const char kPowerOptionsSubPage[]; |
| 329 extern const char kResetProfileSettingsSubPage[]; | 329 extern const char kResetProfileSettingsSubPage[]; |
| 330 extern const char kSearchEnginesSubPage[]; | 330 extern const char kSearchEnginesSubPage[]; |
| 331 extern const char kSearchSubPage[]; | 331 extern const char kSearchSubPage[]; |
| 332 extern const char kSearchUsersSubPage[]; | 332 extern const char kSearchUsersSubPage[]; |
| 333 extern const char kSignOutSubPage[]; |
| 333 extern const char kSyncSetupSubPage[]; | 334 extern const char kSyncSetupSubPage[]; |
| 334 extern const char kTriggeredResetProfileSettingsSubPage[]; | 335 extern const char kTriggeredResetProfileSettingsSubPage[]; |
| 335 #if defined(OS_CHROMEOS) | 336 #if defined(OS_CHROMEOS) |
| 336 extern const char kInternetOptionsSubPage[]; | 337 extern const char kInternetOptionsSubPage[]; |
| 337 extern const char kChangeProfilePictureSubPage[]; | 338 extern const char kChangeProfilePictureSubPage[]; |
| 338 #endif | 339 #endif |
| 339 | 340 |
| 340 // Extensions sub pages. | 341 // Extensions sub pages. |
| 341 extern const char kExtensionConfigureCommandsSubPage[]; | 342 extern const char kExtensionConfigureCommandsSubPage[]; |
| 342 | 343 |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 588 extern const char kChooserUsbOverviewURL[]; | 589 extern const char kChooserUsbOverviewURL[]; |
| 589 | 590 |
| 590 #if defined(OS_CHROMEOS) | 591 #if defined(OS_CHROMEOS) |
| 591 // The URL for EOL notification | 592 // The URL for EOL notification |
| 592 extern const char kEolNotificationURL[]; | 593 extern const char kEolNotificationURL[]; |
| 593 #endif | 594 #endif |
| 594 | 595 |
| 595 } // namespace chrome | 596 } // namespace chrome |
| 596 | 597 |
| 597 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 598 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |