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 | 340 |
341 // URLs used to indicate that an extension resource load request | 341 // URLs used to indicate that an extension resource load request |
342 // was invalid. | 342 // was invalid. |
343 extern const char kExtensionInvalidRequestURL[]; | 343 extern const char kExtensionInvalidRequestURL[]; |
344 extern const char kExtensionResourceInvalidRequestURL[]; | 344 extern const char kExtensionResourceInvalidRequestURL[]; |
345 | 345 |
346 extern const char kSyncGoogleDashboardURL[]; | 346 extern const char kSyncGoogleDashboardURL[]; |
347 | 347 |
348 extern const char kPasswordManagerLearnMoreURL[]; | 348 extern const char kPasswordManagerLearnMoreURL[]; |
349 extern const char kUpgradeHelpCenterBaseURL[]; | 349 extern const char kUpgradeHelpCenterBaseURL[]; |
350 extern const char kPasswordManagerAccountDashboardURL[]; | |
351 extern const char kSmartLockHelpPage[]; | 350 extern const char kSmartLockHelpPage[]; |
352 | 351 |
353 // "Learn more" URL for the Settings API, NTP bubble and other settings bubbles | 352 // "Learn more" URL for the Settings API, NTP bubble and other settings bubbles |
354 // showing which extension is controlling them. | 353 // showing which extension is controlling them. |
355 extern const char kExtensionControlledSettingLearnMoreURL[]; | 354 extern const char kExtensionControlledSettingLearnMoreURL[]; |
356 | 355 |
357 // General help links for Chrome, opened using various actions. | 356 // General help links for Chrome, opened using various actions. |
358 extern const char kChromeHelpViaKeyboardURL[]; | 357 extern const char kChromeHelpViaKeyboardURL[]; |
359 extern const char kChromeHelpViaMenuURL[]; | 358 extern const char kChromeHelpViaMenuURL[]; |
360 extern const char kChromeHelpViaWebUIURL[]; | 359 extern const char kChromeHelpViaWebUIURL[]; |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
564 #endif | 563 #endif |
565 | 564 |
566 #if defined(OS_WIN) | 565 #if defined(OS_WIN) |
567 // The URL for the Windows XP/Vista deprecation help center article. | 566 // The URL for the Windows XP/Vista deprecation help center article. |
568 extern const char kWindowsXPVistaDeprecationURL[]; | 567 extern const char kWindowsXPVistaDeprecationURL[]; |
569 #endif | 568 #endif |
570 | 569 |
571 } // namespace chrome | 570 } // namespace chrome |
572 | 571 |
573 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 572 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |