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 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
348 #if defined(OS_CHROMEOS) | 348 #if defined(OS_CHROMEOS) |
349 extern const char kAccessibilitySubPage[]; | 349 extern const char kAccessibilitySubPage[]; |
350 extern const char kBluetoothSubPage[]; | 350 extern const char kBluetoothSubPage[]; |
351 extern const char kDateTimeSubPage[]; | 351 extern const char kDateTimeSubPage[]; |
352 extern const char kDisplaySubPage[]; | 352 extern const char kDisplaySubPage[]; |
353 extern const char kDeprecatedOptionsSearchSubPage[]; | 353 extern const char kDeprecatedOptionsSearchSubPage[]; |
354 extern const char kInternetSubPage[]; | 354 extern const char kInternetSubPage[]; |
355 extern const char kNetworkDetailSubPage[]; | 355 extern const char kNetworkDetailSubPage[]; |
356 extern const char kPowerSubPage[]; | 356 extern const char kPowerSubPage[]; |
357 extern const char kStylusSubPage[]; | 357 extern const char kStylusSubPage[]; |
| 358 extern const char kHelpSubPage[]; |
358 #endif | 359 #endif |
359 | 360 |
360 // Extensions sub pages. | 361 // Extensions sub pages. |
361 extern const char kExtensionConfigureCommandsSubPage[]; | 362 extern const char kExtensionConfigureCommandsSubPage[]; |
362 | 363 |
363 // URL used to indicate that an extension resource load request was invalid. | 364 // URL used to indicate that an extension resource load request was invalid. |
364 extern const char kExtensionInvalidRequestURL[]; | 365 extern const char kExtensionInvalidRequestURL[]; |
365 | 366 |
366 extern const char kSyncGoogleDashboardURL[]; | 367 extern const char kSyncGoogleDashboardURL[]; |
367 | 368 |
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
621 extern const char kChooserUsbOverviewURL[]; | 622 extern const char kChooserUsbOverviewURL[]; |
622 | 623 |
623 #if defined(OS_CHROMEOS) | 624 #if defined(OS_CHROMEOS) |
624 // The URL for EOL notification | 625 // The URL for EOL notification |
625 extern const char kEolNotificationURL[]; | 626 extern const char kEolNotificationURL[]; |
626 #endif | 627 #endif |
627 | 628 |
628 } // namespace chrome | 629 } // namespace chrome |
629 | 630 |
630 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 631 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |