| 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 576 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 587 | 587 |
| 588 #if defined(OS_WIN) | 588 #if defined(OS_WIN) |
| 589 // The URL for the Windows XP/Vista deprecation help center article. | 589 // The URL for the Windows XP/Vista deprecation help center article. |
| 590 extern const char kWindowsXPVistaDeprecationURL[]; | 590 extern const char kWindowsXPVistaDeprecationURL[]; |
| 591 #endif | 591 #endif |
| 592 | 592 |
| 593 // The URL for the Bluetooth Overview help center article in the Web Bluetooth | 593 // The URL for the Bluetooth Overview help center article in the Web Bluetooth |
| 594 // Chooser. | 594 // Chooser. |
| 595 extern const char kChooserBluetoothOverviewURL[]; | 595 extern const char kChooserBluetoothOverviewURL[]; |
| 596 | 596 |
| 597 // The URL for providing help when the Bluetooth adapter is off. |
| 598 extern const char kBluetoothAdapterOffHelpURL[]; |
| 599 |
| 597 // The URL for the WebUsb help center article. | 600 // The URL for the WebUsb help center article. |
| 598 extern const char kChooserUsbOverviewURL[]; | 601 extern const char kChooserUsbOverviewURL[]; |
| 599 | 602 |
| 600 #if defined(OS_CHROMEOS) | 603 #if defined(OS_CHROMEOS) |
| 601 // The URL for EOL notification | 604 // The URL for EOL notification |
| 602 extern const char kEolNotificationURL[]; | 605 extern const char kEolNotificationURL[]; |
| 603 #endif | 606 #endif |
| 604 | 607 |
| 605 } // namespace chrome | 608 } // namespace chrome |
| 606 | 609 |
| 607 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 610 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |