| 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 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 359 extern const char kExtensionConfigureCommandsSubPage[]; | 359 extern const char kExtensionConfigureCommandsSubPage[]; |
| 360 | 360 |
| 361 // URL used to indicate that an extension resource load request was invalid. | 361 // URL used to indicate that an extension resource load request was invalid. |
| 362 extern const char kExtensionInvalidRequestURL[]; | 362 extern const char kExtensionInvalidRequestURL[]; |
| 363 | 363 |
| 364 extern const char kSyncGoogleDashboardURL[]; | 364 extern const char kSyncGoogleDashboardURL[]; |
| 365 | 365 |
| 366 // URL of the 'Activity controls' section of the privacy settings page. | 366 // URL of the 'Activity controls' section of the privacy settings page. |
| 367 extern const char kGoogleAccountActivityControlsURL[]; | 367 extern const char kGoogleAccountActivityControlsURL[]; |
| 368 | 368 |
| 369 extern const char kContentSettingsExceptionsLearnMoreURL[]; |
| 369 extern const char kPasswordManagerLearnMoreURL[]; | 370 extern const char kPasswordManagerLearnMoreURL[]; |
| 370 extern const char kUpgradeHelpCenterBaseURL[]; | 371 extern const char kUpgradeHelpCenterBaseURL[]; |
| 371 extern const char kSmartLockHelpPage[]; | 372 extern const char kSmartLockHelpPage[]; |
| 372 | 373 |
| 373 // "Learn more" URL for the Settings API, NTP bubble and other settings bubbles | 374 // "Learn more" URL for the Settings API, NTP bubble and other settings bubbles |
| 374 // showing which extension is controlling them. | 375 // showing which extension is controlling them. |
| 375 extern const char kExtensionControlledSettingLearnMoreURL[]; | 376 extern const char kExtensionControlledSettingLearnMoreURL[]; |
| 376 | 377 |
| 377 // General help links for Chrome, opened using various actions. | 378 // General help links for Chrome, opened using various actions. |
| 378 extern const char kChromeHelpViaKeyboardURL[]; | 379 extern const char kChromeHelpViaKeyboardURL[]; |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 613 extern const char kChooserUsbOverviewURL[]; | 614 extern const char kChooserUsbOverviewURL[]; |
| 614 | 615 |
| 615 #if defined(OS_CHROMEOS) | 616 #if defined(OS_CHROMEOS) |
| 616 // The URL for EOL notification | 617 // The URL for EOL notification |
| 617 extern const char kEolNotificationURL[]; | 618 extern const char kEolNotificationURL[]; |
| 618 #endif | 619 #endif |
| 619 | 620 |
| 620 } // namespace chrome | 621 } // namespace chrome |
| 621 | 622 |
| 622 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 623 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |