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 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
344 | 344 |
345 // Extensions sub pages. | 345 // Extensions sub pages. |
346 extern const char kExtensionConfigureCommandsSubPage[]; | 346 extern const char kExtensionConfigureCommandsSubPage[]; |
347 | 347 |
348 // URLs used to indicate that an extension resource load request | 348 // URLs used to indicate that an extension resource load request |
349 // was invalid. | 349 // was invalid. |
350 extern const char kExtensionInvalidRequestURL[]; | 350 extern const char kExtensionInvalidRequestURL[]; |
351 extern const char kExtensionResourceInvalidRequestURL[]; | 351 extern const char kExtensionResourceInvalidRequestURL[]; |
352 | 352 |
353 extern const char kSyncGoogleDashboardURL[]; | 353 extern const char kSyncGoogleDashboardURL[]; |
354 extern const char kSyncChromeDashboardURL[]; | |
355 | 354 |
356 extern const char kPasswordManagerLearnMoreURL[]; | 355 extern const char kPasswordManagerLearnMoreURL[]; |
357 extern const char kPasswordManagerAccountDashboardURL[]; | 356 extern const char kPasswordManagerAccountDashboardURL[]; |
358 | 357 |
359 // "Learn more" URL for the Settings API, NTP bubble and other settings bubbles | 358 // "Learn more" URL for the Settings API, NTP bubble and other settings bubbles |
360 // showing which extension is controlling them. | 359 // showing which extension is controlling them. |
361 extern const char kExtensionControlledSettingLearnMoreURL[]; | 360 extern const char kExtensionControlledSettingLearnMoreURL[]; |
362 | 361 |
363 // General help links for Chrome, opened using various actions. | 362 // General help links for Chrome, opened using various actions. |
364 extern const char kChromeHelpViaKeyboardURL[]; | 363 extern const char kChromeHelpViaKeyboardURL[]; |
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
554 // The URL for the 32-bit Mac deprecation help center article | 553 // The URL for the 32-bit Mac deprecation help center article |
555 extern const char kMac32BitDeprecationURL[]; | 554 extern const char kMac32BitDeprecationURL[]; |
556 #endif | 555 #endif |
557 | 556 |
558 // The URL for the "Learn more" link the the Easy Unlock settings. | 557 // The URL for the "Learn more" link the the Easy Unlock settings. |
559 extern const char kEasyUnlockLearnMoreUrl[]; | 558 extern const char kEasyUnlockLearnMoreUrl[]; |
560 | 559 |
561 } // namespace chrome | 560 } // namespace chrome |
562 | 561 |
563 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 562 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |