| 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 extern const char kChromeUIVersionURL[]; | 91 extern const char kChromeUIVersionURL[]; |
| 92 extern const char kChromeUIWelcomeURL[]; | 92 extern const char kChromeUIWelcomeURL[]; |
| 93 extern const char kChromeUIWelcomeWin10URL[]; | 93 extern const char kChromeUIWelcomeWin10URL[]; |
| 94 | 94 |
| 95 #if defined(OS_ANDROID) | 95 #if defined(OS_ANDROID) |
| 96 extern const char kChromeUIContextualSearchPromoURL[]; | 96 extern const char kChromeUIContextualSearchPromoURL[]; |
| 97 extern const char kChromeUIJavaCrashURL[]; | 97 extern const char kChromeUIJavaCrashURL[]; |
| 98 extern const char kChromeUINativeScheme[]; | 98 extern const char kChromeUINativeScheme[]; |
| 99 extern const char kChromeUINativeNewTabURL[]; | 99 extern const char kChromeUINativeNewTabURL[]; |
| 100 extern const char kChromeUINativeBookmarksURL[]; | 100 extern const char kChromeUINativeBookmarksURL[]; |
| 101 extern const char kChromeUINativeHistoryURL[]; | |
| 102 extern const char kChromeUINativePhysicalWebDiagnosticsURL[]; | 101 extern const char kChromeUINativePhysicalWebDiagnosticsURL[]; |
| 103 extern const char kChromeUINativeRecentTabsURL[]; | 102 extern const char kChromeUINativeRecentTabsURL[]; |
| 104 #endif // defined(OS_ANDROID) | 103 #endif // defined(OS_ANDROID) |
| 105 | 104 |
| 106 #if defined(OS_CHROMEOS) | 105 #if defined(OS_CHROMEOS) |
| 107 extern const char kChromeUIBluetoothPairingURL[]; | 106 extern const char kChromeUIBluetoothPairingURL[]; |
| 108 extern const char kChromeUICertificateManagerDialogURL[]; | 107 extern const char kChromeUICertificateManagerDialogURL[]; |
| 109 extern const char kChromeUIChooseMobileNetworkURL[]; | 108 extern const char kChromeUIChooseMobileNetworkURL[]; |
| 110 extern const char kChromeUIDeviceEmulatorURL[]; | 109 extern const char kChromeUIDeviceEmulatorURL[]; |
| 111 extern const char kChromeUIFirstRunURL[]; | 110 extern const char kChromeUIFirstRunURL[]; |
| (...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 612 extern const char kChooserUsbOverviewURL[]; | 611 extern const char kChooserUsbOverviewURL[]; |
| 613 | 612 |
| 614 #if defined(OS_CHROMEOS) | 613 #if defined(OS_CHROMEOS) |
| 615 // The URL for EOL notification | 614 // The URL for EOL notification |
| 616 extern const char kEolNotificationURL[]; | 615 extern const char kEolNotificationURL[]; |
| 617 #endif | 616 #endif |
| 618 | 617 |
| 619 } // namespace chrome | 618 } // namespace chrome |
| 620 | 619 |
| 621 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 620 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |