| 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 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 // Extensions sub pages. | 334 // Extensions sub pages. |
| 335 extern const char kExtensionConfigureCommandsSubPage[]; | 335 extern const char kExtensionConfigureCommandsSubPage[]; |
| 336 | 336 |
| 337 // URLs used to indicate that an extension resource load request | 337 // URLs used to indicate that an extension resource load request |
| 338 // was invalid. | 338 // was invalid. |
| 339 extern const char kExtensionInvalidRequestURL[]; | 339 extern const char kExtensionInvalidRequestURL[]; |
| 340 extern const char kExtensionResourceInvalidRequestURL[]; | 340 extern const char kExtensionResourceInvalidRequestURL[]; |
| 341 | 341 |
| 342 extern const char kSyncGoogleDashboardURL[]; | 342 extern const char kSyncGoogleDashboardURL[]; |
| 343 | 343 |
| 344 // URL of the 'Activity controls' section of the privacy settings page. |
| 345 extern const char kGoogleAccountActivityControlsURL[]; |
| 346 |
| 344 extern const char kPasswordManagerLearnMoreURL[]; | 347 extern const char kPasswordManagerLearnMoreURL[]; |
| 345 extern const char kUpgradeHelpCenterBaseURL[]; | 348 extern const char kUpgradeHelpCenterBaseURL[]; |
| 346 extern const char kSmartLockHelpPage[]; | 349 extern const char kSmartLockHelpPage[]; |
| 347 | 350 |
| 348 // "Learn more" URL for the Settings API, NTP bubble and other settings bubbles | 351 // "Learn more" URL for the Settings API, NTP bubble and other settings bubbles |
| 349 // showing which extension is controlling them. | 352 // showing which extension is controlling them. |
| 350 extern const char kExtensionControlledSettingLearnMoreURL[]; | 353 extern const char kExtensionControlledSettingLearnMoreURL[]; |
| 351 | 354 |
| 352 // General help links for Chrome, opened using various actions. | 355 // General help links for Chrome, opened using various actions. |
| 353 extern const char kChromeHelpViaKeyboardURL[]; | 356 extern const char kChromeHelpViaKeyboardURL[]; |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 574 // The URL for the Bluetooth Overview help center article in the Web Bluetooth | 577 // The URL for the Bluetooth Overview help center article in the Web Bluetooth |
| 575 // Chooser. | 578 // Chooser. |
| 576 extern const char kChooserBluetoothOverviewURL[]; | 579 extern const char kChooserBluetoothOverviewURL[]; |
| 577 | 580 |
| 578 // The URL for the WebUsb help center article. | 581 // The URL for the WebUsb help center article. |
| 579 extern const char kChooserUsbOverviewURL[]; | 582 extern const char kChooserUsbOverviewURL[]; |
| 580 | 583 |
| 581 } // namespace chrome | 584 } // namespace chrome |
| 582 | 585 |
| 583 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 586 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |