| 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 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 extern const char kPowerOptionsSubPage[]; | 335 extern const char kPowerOptionsSubPage[]; |
| 336 extern const char kResetProfileSettingsSubPage[]; | 336 extern const char kResetProfileSettingsSubPage[]; |
| 337 extern const char kSearchEnginesSubPage[]; | 337 extern const char kSearchEnginesSubPage[]; |
| 338 extern const char kSearchSubPage[]; | 338 extern const char kSearchSubPage[]; |
| 339 extern const char kSearchUsersSubPage[]; | 339 extern const char kSearchUsersSubPage[]; |
| 340 extern const char kSignOutSubPage[]; | 340 extern const char kSignOutSubPage[]; |
| 341 extern const char kSyncSetupSubPage[]; | 341 extern const char kSyncSetupSubPage[]; |
| 342 extern const char kTriggeredResetProfileSettingsSubPage[]; | 342 extern const char kTriggeredResetProfileSettingsSubPage[]; |
| 343 #if defined(OS_CHROMEOS) | 343 #if defined(OS_CHROMEOS) |
| 344 extern const char kInternetOptionsSubPage[]; | 344 extern const char kInternetOptionsSubPage[]; |
| 345 extern const char kChangeProfilePictureSubPage[]; | |
| 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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 598 extern const char kChooserUsbOverviewURL[]; | 597 extern const char kChooserUsbOverviewURL[]; |
| 599 | 598 |
| 600 #if defined(OS_CHROMEOS) | 599 #if defined(OS_CHROMEOS) |
| 601 // The URL for EOL notification | 600 // The URL for EOL notification |
| 602 extern const char kEolNotificationURL[]; | 601 extern const char kEolNotificationURL[]; |
| 603 #endif | 602 #endif |
| 604 | 603 |
| 605 } // namespace chrome | 604 } // namespace chrome |
| 606 | 605 |
| 607 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 606 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |