Chromium Code Reviews| 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 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 339 // Extensions sub pages. | 339 // Extensions sub pages. |
| 340 extern const char kExtensionConfigureCommandsSubPage[]; | 340 extern const char kExtensionConfigureCommandsSubPage[]; |
| 341 | 341 |
| 342 // URLs used to indicate that an extension resource load request | 342 // URLs used to indicate that an extension resource load request |
| 343 // was invalid. | 343 // was invalid. |
| 344 extern const char kExtensionInvalidRequestURL[]; | 344 extern const char kExtensionInvalidRequestURL[]; |
| 345 extern const char kExtensionResourceInvalidRequestURL[]; | 345 extern const char kExtensionResourceInvalidRequestURL[]; |
| 346 | 346 |
| 347 extern const char kSyncGoogleDashboardURL[]; | 347 extern const char kSyncGoogleDashboardURL[]; |
| 348 | 348 |
| 349 extern const char kGoogleAccountActivityControlsURL[]; | |
|
anthonyvd
2016/03/17 20:23:41
Can you add a comment for this please?
Moe
2016/03/18 21:53:40
Done.
| |
| 350 | |
| 349 extern const char kPasswordManagerLearnMoreURL[]; | 351 extern const char kPasswordManagerLearnMoreURL[]; |
| 350 extern const char kUpgradeHelpCenterBaseURL[]; | 352 extern const char kUpgradeHelpCenterBaseURL[]; |
| 351 extern const char kSmartLockHelpPage[]; | 353 extern const char kSmartLockHelpPage[]; |
| 352 | 354 |
| 353 // "Learn more" URL for the Settings API, NTP bubble and other settings bubbles | 355 // "Learn more" URL for the Settings API, NTP bubble and other settings bubbles |
| 354 // showing which extension is controlling them. | 356 // showing which extension is controlling them. |
| 355 extern const char kExtensionControlledSettingLearnMoreURL[]; | 357 extern const char kExtensionControlledSettingLearnMoreURL[]; |
| 356 | 358 |
| 357 // General help links for Chrome, opened using various actions. | 359 // General help links for Chrome, opened using various actions. |
| 358 extern const char kChromeHelpViaKeyboardURL[]; | 360 extern const char kChromeHelpViaKeyboardURL[]; |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 579 // The URL for the Bluetooth Overview help center article in the Web Bluetooth | 581 // The URL for the Bluetooth Overview help center article in the Web Bluetooth |
| 580 // Chooser. | 582 // Chooser. |
| 581 extern const char kChooserBluetoothOverviewURL[]; | 583 extern const char kChooserBluetoothOverviewURL[]; |
| 582 | 584 |
| 583 // The URL for the WebUsb help center article. | 585 // The URL for the WebUsb help center article. |
| 584 extern const char kChooserUsbOverviewURL[]; | 586 extern const char kChooserUsbOverviewURL[]; |
| 585 | 587 |
| 586 } // namespace chrome | 588 } // namespace chrome |
| 587 | 589 |
| 588 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 590 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |