| 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 #include "chrome/common/url_constants.h" | 5 #include "chrome/common/url_constants.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "content/public/common/url_constants.h" | 10 #include "content/public/common/url_constants.h" |
| (...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 486 | 486 |
| 487 const char kLearnMoreReportingURL[] = | 487 const char kLearnMoreReportingURL[] = |
| 488 "https://support.google.com/chrome/?p=ui_usagestat"; | 488 "https://support.google.com/chrome/?p=ui_usagestat"; |
| 489 | 489 |
| 490 const char kOutdatedPluginLearnMoreURL[] = | 490 const char kOutdatedPluginLearnMoreURL[] = |
| 491 "https://support.google.com/chrome/?p=ib_outdated_plugin"; | 491 "https://support.google.com/chrome/?p=ib_outdated_plugin"; |
| 492 | 492 |
| 493 const char kBlockedPluginLearnMoreURL[] = | 493 const char kBlockedPluginLearnMoreURL[] = |
| 494 "https://support.google.com/chrome/?p=ib_blocked_plugin"; | 494 "https://support.google.com/chrome/?p=ib_blocked_plugin"; |
| 495 | 495 |
| 496 const char kSpeechInputAboutURL[] = | |
| 497 "https://support.google.com/chrome/?p=ui_speech_input"; | |
| 498 | |
| 499 const char kHotwordLearnMoreURL[] = | 496 const char kHotwordLearnMoreURL[] = |
| 500 "https://support.google.com/chrome/?p=ui_hotword_search"; | 497 "https://support.google.com/chrome/?p=ui_hotword_search"; |
| 501 | 498 |
| 502 const char kLearnMoreRegisterProtocolHandlerURL[] = | 499 const char kLearnMoreRegisterProtocolHandlerURL[] = |
| 503 "https://support.google.com/chrome/?p=ib_protocol_handler"; | 500 "https://support.google.com/chrome/?p=ib_protocol_handler"; |
| 504 | 501 |
| 505 const char kSyncLearnMoreURL[] = | 502 const char kSyncLearnMoreURL[] = |
| 506 "https://support.google.com/chrome/?p=settings_sign_in"; | 503 "https://support.google.com/chrome/?p=settings_sign_in"; |
| 507 | 504 |
| 508 const char kDownloadScanningLearnMoreURL[] = | 505 const char kDownloadScanningLearnMoreURL[] = |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 710 ""; | 707 ""; |
| 711 #endif | 708 #endif |
| 712 #endif | 709 #endif |
| 713 | 710 |
| 714 // TODO(tengs): Replace with real URL when ready. | 711 // TODO(tengs): Replace with real URL when ready. |
| 715 const char kEasyUnlockLearnMoreUrl[] = | 712 const char kEasyUnlockLearnMoreUrl[] = |
| 716 "https://support.google.com/chromebook/?p=easy_unlock"; | 713 "https://support.google.com/chromebook/?p=easy_unlock"; |
| 717 const char kEasyUnlockManagementUrl[] = "https://chrome.com"; | 714 const char kEasyUnlockManagementUrl[] = "https://chrome.com"; |
| 718 | 715 |
| 719 } // namespace chrome | 716 } // namespace chrome |
| OLD | NEW |