| 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 <string> | 10 #include <string> |
| (...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 // Extensions sub pages. | 340 // Extensions sub pages. |
| 341 extern const char kExtensionConfigureCommandsSubPage[]; | 341 extern const char kExtensionConfigureCommandsSubPage[]; |
| 342 | 342 |
| 343 // URLs used to indicate that an extension resource load request | 343 // URLs used to indicate that an extension resource load request |
| 344 // was invalid. | 344 // was invalid. |
| 345 extern const char kExtensionInvalidRequestURL[]; | 345 extern const char kExtensionInvalidRequestURL[]; |
| 346 extern const char kExtensionResourceInvalidRequestURL[]; | 346 extern const char kExtensionResourceInvalidRequestURL[]; |
| 347 | 347 |
| 348 extern const char kSyncGoogleDashboardURL[]; | 348 extern const char kSyncGoogleDashboardURL[]; |
| 349 | 349 |
| 350 // "Learn more" URL for the auto password generation. | |
| 351 extern const char kAutoPasswordGenerationLearnMoreURL[]; | |
| 352 | |
| 353 extern const char kPasswordManagerLearnMoreURL[]; | 350 extern const char kPasswordManagerLearnMoreURL[]; |
| 354 extern const char kPasswordManagerAccountDashboardURL[]; | 351 extern const char kPasswordManagerAccountDashboardURL[]; |
| 355 | 352 |
| 356 // "Learn more" URL for the Settings API, NTP bubble and other settings bubbles | 353 // "Learn more" URL for the Settings API, NTP bubble and other settings bubbles |
| 357 // showing which extension is controlling them. | 354 // showing which extension is controlling them. |
| 358 extern const char kExtensionControlledSettingLearnMoreURL[]; | 355 extern const char kExtensionControlledSettingLearnMoreURL[]; |
| 359 | 356 |
| 360 // General help links for Chrome, opened using various actions. | 357 // General help links for Chrome, opened using various actions. |
| 361 extern const char kChromeHelpViaKeyboardURL[]; | 358 extern const char kChromeHelpViaKeyboardURL[]; |
| 362 extern const char kChromeHelpViaMenuURL[]; | 359 extern const char kChromeHelpViaMenuURL[]; |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 548 // The URL for the 32-bit Mac deprecation help center article | 545 // The URL for the 32-bit Mac deprecation help center article |
| 549 extern const char kMac32BitDeprecationURL[]; | 546 extern const char kMac32BitDeprecationURL[]; |
| 550 #endif | 547 #endif |
| 551 | 548 |
| 552 // The URL for the "Learn more" link the the Easy Unlock settings. | 549 // The URL for the "Learn more" link the the Easy Unlock settings. |
| 553 extern const char kEasyUnlockLearnMoreUrl[]; | 550 extern const char kEasyUnlockLearnMoreUrl[]; |
| 554 | 551 |
| 555 } // namespace chrome | 552 } // namespace chrome |
| 556 | 553 |
| 557 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 554 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |