| 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 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 | 375 |
| 376 // "Learn more" URL for the Settings API, NTP bubble and other settings bubbles | 376 // "Learn more" URL for the Settings API, NTP bubble and other settings bubbles |
| 377 // showing which extension is controlling them. | 377 // showing which extension is controlling them. |
| 378 extern const char kExtensionControlledSettingLearnMoreURL[]; | 378 extern const char kExtensionControlledSettingLearnMoreURL[]; |
| 379 | 379 |
| 380 // General help links for Chrome, opened using various actions. | 380 // General help links for Chrome, opened using various actions. |
| 381 extern const char kChromeHelpViaKeyboardURL[]; | 381 extern const char kChromeHelpViaKeyboardURL[]; |
| 382 extern const char kChromeHelpViaMenuURL[]; | 382 extern const char kChromeHelpViaMenuURL[]; |
| 383 extern const char kChromeHelpViaWebUIURL[]; | 383 extern const char kChromeHelpViaWebUIURL[]; |
| 384 | 384 |
| 385 // Link to the forum for Chrome Beta. |
| 386 extern const char kChromeBetaForumURL[]; |
| 387 |
| 385 #if defined(OS_CHROMEOS) | 388 #if defined(OS_CHROMEOS) |
| 386 // Accessibility help link for Chrome. | 389 // Accessibility help link for Chrome. |
| 387 extern const char kChromeAccessibilityHelpURL[]; | 390 extern const char kChromeAccessibilityHelpURL[]; |
| 388 // Accessibility settings link for Chrome. | 391 // Accessibility settings link for Chrome. |
| 389 extern const char kChromeAccessibilitySettingsURL[]; | 392 extern const char kChromeAccessibilitySettingsURL[]; |
| 390 // Palette help link for Chrome. | 393 // Palette help link for Chrome. |
| 391 extern const char kChromePaletteHelpURL[]; | 394 extern const char kChromePaletteHelpURL[]; |
| 392 #endif | 395 #endif |
| 393 | 396 |
| 394 #if BUILDFLAG(ENABLE_ONE_CLICK_SIGNIN) | 397 #if BUILDFLAG(ENABLE_ONE_CLICK_SIGNIN) |
| (...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 621 extern const char kChooserUsbOverviewURL[]; | 624 extern const char kChooserUsbOverviewURL[]; |
| 622 | 625 |
| 623 #if defined(OS_CHROMEOS) | 626 #if defined(OS_CHROMEOS) |
| 624 // The URL for EOL notification | 627 // The URL for EOL notification |
| 625 extern const char kEolNotificationURL[]; | 628 extern const char kEolNotificationURL[]; |
| 626 #endif | 629 #endif |
| 627 | 630 |
| 628 } // namespace chrome | 631 } // namespace chrome |
| 629 | 632 |
| 630 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 633 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |