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 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
398 | 398 |
399 // The URL for the "Learn more" page for the outdated plugin infobar. | 399 // The URL for the "Learn more" page for the outdated plugin infobar. |
400 extern const char kOutdatedPluginLearnMoreURL[]; | 400 extern const char kOutdatedPluginLearnMoreURL[]; |
401 | 401 |
402 // The URL for the "Learn more" page for the blocked plugin infobar. | 402 // The URL for the "Learn more" page for the blocked plugin infobar. |
403 extern const char kBlockedPluginLearnMoreURL[]; | 403 extern const char kBlockedPluginLearnMoreURL[]; |
404 | 404 |
405 // The URL for the "About Voice Recognition" menu item. | 405 // The URL for the "About Voice Recognition" menu item. |
406 extern const char kSpeechInputAboutURL[]; | 406 extern const char kSpeechInputAboutURL[]; |
407 | 407 |
| 408 // The URL for the "Learn more" page for hotword search voice trigger. |
| 409 extern const char kHotwordLearnMoreURL[]; |
| 410 |
408 // The URL for the "Learn more" page for register protocol handler infobars. | 411 // The URL for the "Learn more" page for register protocol handler infobars. |
409 extern const char kLearnMoreRegisterProtocolHandlerURL[]; | 412 extern const char kLearnMoreRegisterProtocolHandlerURL[]; |
410 | 413 |
411 // The URL for the "Learn more" page for sync setup on the personal stuff page. | 414 // The URL for the "Learn more" page for sync setup on the personal stuff page. |
412 extern const char kSyncLearnMoreURL[]; | 415 extern const char kSyncLearnMoreURL[]; |
413 | 416 |
414 // The URL for the "Learn more" page for download scanning. | 417 // The URL for the "Learn more" page for download scanning. |
415 extern const char kDownloadScanningLearnMoreURL[]; | 418 extern const char kDownloadScanningLearnMoreURL[]; |
416 | 419 |
417 // The URL for the "Learn more" page for interrupted downloads. | 420 // The URL for the "Learn more" page for interrupted downloads. |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
502 | 505 |
503 // The URL for the "Learn more" link in the media access infobar. | 506 // The URL for the "Learn more" link in the media access infobar. |
504 extern const char kMediaAccessLearnMoreUrl[]; | 507 extern const char kMediaAccessLearnMoreUrl[]; |
505 | 508 |
506 // The URL for the "Learn more" link in the language settings. | 509 // The URL for the "Learn more" link in the language settings. |
507 extern const char kLanguageSettingsLearnMoreUrl[]; | 510 extern const char kLanguageSettingsLearnMoreUrl[]; |
508 | 511 |
509 } // namespace chrome | 512 } // namespace chrome |
510 | 513 |
511 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 514 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |