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 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
348 extern const char kBluetoothSubPage[]; | 348 extern const char kBluetoothSubPage[]; |
349 extern const char kDateTimeSubPage[]; | 349 extern const char kDateTimeSubPage[]; |
350 extern const char kDeprecatedOptionsSearchSubPage[]; | 350 extern const char kDeprecatedOptionsSearchSubPage[]; |
351 extern const char kInternetOptionsSubPage[]; | 351 extern const char kInternetOptionsSubPage[]; |
352 extern const char kPowerOptionsSubPage[]; | 352 extern const char kPowerOptionsSubPage[]; |
353 #endif | 353 #endif |
354 | 354 |
355 // Extensions sub pages. | 355 // Extensions sub pages. |
356 extern const char kExtensionConfigureCommandsSubPage[]; | 356 extern const char kExtensionConfigureCommandsSubPage[]; |
357 | 357 |
358 // URLs used to indicate that an extension resource load request | 358 // URL used to indicate that an extension resource load request was invalid. |
359 // was invalid. | |
360 extern const char kExtensionInvalidRequestURL[]; | 359 extern const char kExtensionInvalidRequestURL[]; |
361 extern const char kExtensionResourceInvalidRequestURL[]; | |
362 | 360 |
363 extern const char kSyncGoogleDashboardURL[]; | 361 extern const char kSyncGoogleDashboardURL[]; |
364 | 362 |
365 // URL of the 'Activity controls' section of the privacy settings page. | 363 // URL of the 'Activity controls' section of the privacy settings page. |
366 extern const char kGoogleAccountActivityControlsURL[]; | 364 extern const char kGoogleAccountActivityControlsURL[]; |
367 | 365 |
368 extern const char kPasswordManagerLearnMoreURL[]; | 366 extern const char kPasswordManagerLearnMoreURL[]; |
369 extern const char kUpgradeHelpCenterBaseURL[]; | 367 extern const char kUpgradeHelpCenterBaseURL[]; |
370 extern const char kSmartLockHelpPage[]; | 368 extern const char kSmartLockHelpPage[]; |
371 | 369 |
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
612 extern const char kChooserUsbOverviewURL[]; | 610 extern const char kChooserUsbOverviewURL[]; |
613 | 611 |
614 #if defined(OS_CHROMEOS) | 612 #if defined(OS_CHROMEOS) |
615 // The URL for EOL notification | 613 // The URL for EOL notification |
616 extern const char kEolNotificationURL[]; | 614 extern const char kEolNotificationURL[]; |
617 #endif | 615 #endif |
618 | 616 |
619 } // namespace chrome | 617 } // namespace chrome |
620 | 618 |
621 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 619 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |