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 "build/build_config.h" | 10 #include "build/build_config.h" |
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
382 | 382 |
383 // The URL for the "Learn more" page for register protocol handler infobars. | 383 // The URL for the "Learn more" page for register protocol handler infobars. |
384 extern const char kLearnMoreRegisterProtocolHandlerURL[]; | 384 extern const char kLearnMoreRegisterProtocolHandlerURL[]; |
385 | 385 |
386 // The URL for the "Learn more" page for sync setup on the personal stuff page. | 386 // The URL for the "Learn more" page for sync setup on the personal stuff page. |
387 extern const char kSyncLearnMoreURL[]; | 387 extern const char kSyncLearnMoreURL[]; |
388 | 388 |
389 // The URL for the "Learn more" page for download scanning. | 389 // The URL for the "Learn more" page for download scanning. |
390 extern const char kDownloadScanningLearnMoreURL[]; | 390 extern const char kDownloadScanningLearnMoreURL[]; |
391 | 391 |
| 392 // The URL for the "Learn more" page for downloads flagged as potentially |
| 393 // unwanted by the SafeBrowsing service. |
| 394 extern const char kDownloadPotentiallyUnwantedLearnMoreURL[]; |
| 395 |
392 // The URL for the "Learn more" page for interrupted downloads. | 396 // The URL for the "Learn more" page for interrupted downloads. |
393 extern const char kDownloadInterruptedLearnMoreURL[]; | 397 extern const char kDownloadInterruptedLearnMoreURL[]; |
394 | 398 |
395 // The URL for the "Learn more" page on the sync setup dialog, when syncing | 399 // The URL for the "Learn more" page on the sync setup dialog, when syncing |
396 // everything. | 400 // everything. |
397 extern const char kSyncEverythingLearnMoreURL[]; | 401 extern const char kSyncEverythingLearnMoreURL[]; |
398 | 402 |
399 // The URL for information on how to use the app launcher. | 403 // The URL for information on how to use the app launcher. |
400 extern const char kAppLauncherHelpURL[]; | 404 extern const char kAppLauncherHelpURL[]; |
401 | 405 |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
467 // Parameters that get appended to force SafeSearch. | 471 // Parameters that get appended to force SafeSearch. |
468 extern const char kSafeSearchSafeParameter[]; | 472 extern const char kSafeSearchSafeParameter[]; |
469 extern const char kSafeSearchSsuiParameter[]; | 473 extern const char kSafeSearchSsuiParameter[]; |
470 | 474 |
471 // The URL for the "Learn more" link in the media access infobar. | 475 // The URL for the "Learn more" link in the media access infobar. |
472 extern const char kMediaAccessLearnMoreUrl[]; | 476 extern const char kMediaAccessLearnMoreUrl[]; |
473 | 477 |
474 } // namespace chrome | 478 } // namespace chrome |
475 | 479 |
476 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 480 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |