| 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 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 extern const char kResetProfileSettingsSubPage[]; | 344 extern const char kResetProfileSettingsSubPage[]; |
| 345 extern const char kSearchEnginesSubPage[]; | 345 extern const char kSearchEnginesSubPage[]; |
| 346 extern const char kSignOutSubPage[]; | 346 extern const char kSignOutSubPage[]; |
| 347 extern const char kSyncSetupSubPage[]; | 347 extern const char kSyncSetupSubPage[]; |
| 348 extern const char kTriggeredResetProfileSettingsSubPage[]; | 348 extern const char kTriggeredResetProfileSettingsSubPage[]; |
| 349 #if defined(OS_CHROMEOS) | 349 #if defined(OS_CHROMEOS) |
| 350 extern const char kAccessibilitySubPage[]; | 350 extern const char kAccessibilitySubPage[]; |
| 351 extern const char kBluetoothSubPage[]; | 351 extern const char kBluetoothSubPage[]; |
| 352 extern const char kDateTimeSubPage[]; | 352 extern const char kDateTimeSubPage[]; |
| 353 extern const char kDisplaySubPage[]; | 353 extern const char kDisplaySubPage[]; |
| 354 extern const char kDeprecatedOptionsSearchSubPage[]; | |
| 355 extern const char kHelpSubPage[]; | 354 extern const char kHelpSubPage[]; |
| 356 extern const char kInternetSubPage[]; | 355 extern const char kInternetSubPage[]; |
| 357 extern const char kNetworkDetailSubPage[]; | 356 extern const char kNetworkDetailSubPage[]; |
| 358 extern const char kPowerSubPage[]; | 357 extern const char kPowerSubPage[]; |
| 359 extern const char kStylusSubPage[]; | 358 extern const char kStylusSubPage[]; |
| 360 #endif | 359 #endif |
| 361 | 360 |
| 362 // Extensions sub pages. | 361 // Extensions sub pages. |
| 363 extern const char kExtensionConfigureCommandsSubPage[]; | 362 extern const char kExtensionConfigureCommandsSubPage[]; |
| 364 | 363 |
| (...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 626 extern const char kChooserUsbOverviewURL[]; | 625 extern const char kChooserUsbOverviewURL[]; |
| 627 | 626 |
| 628 #if defined(OS_CHROMEOS) | 627 #if defined(OS_CHROMEOS) |
| 629 // The URL for EOL notification | 628 // The URL for EOL notification |
| 630 extern const char kEolNotificationURL[]; | 629 extern const char kEolNotificationURL[]; |
| 631 #endif | 630 #endif |
| 632 | 631 |
| 633 } // namespace chrome | 632 } // namespace chrome |
| 634 | 633 |
| 635 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 634 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |