| 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 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 // General help links for Chrome, opened using various actions. | 363 // General help links for Chrome, opened using various actions. |
| 364 extern const char kChromeHelpViaKeyboardURL[]; | 364 extern const char kChromeHelpViaKeyboardURL[]; |
| 365 extern const char kChromeHelpViaMenuURL[]; | 365 extern const char kChromeHelpViaMenuURL[]; |
| 366 extern const char kChromeHelpViaWebUIURL[]; | 366 extern const char kChromeHelpViaWebUIURL[]; |
| 367 | 367 |
| 368 #if defined(OS_CHROMEOS) | 368 #if defined(OS_CHROMEOS) |
| 369 // Accessibility help link for Chrome. | 369 // Accessibility help link for Chrome. |
| 370 extern const char kChromeAccessibilityHelpURL[]; | 370 extern const char kChromeAccessibilityHelpURL[]; |
| 371 // Accessibility settings link for Chrome. | 371 // Accessibility settings link for Chrome. |
| 372 extern const char kChromeAccessibilitySettingsURL[]; | 372 extern const char kChromeAccessibilitySettingsURL[]; |
| 373 // Palette help link for Chrome. |
| 374 extern const char kChromePaletteHelpURL[]; |
| 373 #endif | 375 #endif |
| 374 | 376 |
| 375 #if BUILDFLAG(ENABLE_ONE_CLICK_SIGNIN) | 377 #if BUILDFLAG(ENABLE_ONE_CLICK_SIGNIN) |
| 376 // "Learn more" URL for the one click signin infobar. | 378 // "Learn more" URL for the one click signin infobar. |
| 377 extern const char kChromeSyncLearnMoreURL[]; | 379 extern const char kChromeSyncLearnMoreURL[]; |
| 378 | 380 |
| 379 // "Learn more" URL for the "Sign in with a different account" confirmation | 381 // "Learn more" URL for the "Sign in with a different account" confirmation |
| 380 // dialog. | 382 // dialog. |
| 381 extern const char kChromeSyncMergeTroubleshootingURL[]; | 383 extern const char kChromeSyncMergeTroubleshootingURL[]; |
| 382 #endif | 384 #endif |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 590 extern const char kChooserUsbOverviewURL[]; | 592 extern const char kChooserUsbOverviewURL[]; |
| 591 | 593 |
| 592 #if defined(OS_CHROMEOS) | 594 #if defined(OS_CHROMEOS) |
| 593 // The URL for EOL notification | 595 // The URL for EOL notification |
| 594 extern const char kEolNotificationURL[]; | 596 extern const char kEolNotificationURL[]; |
| 595 #endif | 597 #endif |
| 596 | 598 |
| 597 } // namespace chrome | 599 } // namespace chrome |
| 598 | 600 |
| 599 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 601 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |