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