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