| 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 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 467 | 467 |
| 468 const char kOutdatedPluginLearnMoreURL[] = | 468 const char kOutdatedPluginLearnMoreURL[] = |
| 469 "https://support.google.com/chrome/?p=ib_outdated_plugin"; | 469 "https://support.google.com/chrome/?p=ib_outdated_plugin"; |
| 470 | 470 |
| 471 const char kBlockedPluginLearnMoreURL[] = | 471 const char kBlockedPluginLearnMoreURL[] = |
| 472 "https://support.google.com/chrome/?p=ib_blocked_plugin"; | 472 "https://support.google.com/chrome/?p=ib_blocked_plugin"; |
| 473 | 473 |
| 474 const char kSpeechInputAboutURL[] = | 474 const char kSpeechInputAboutURL[] = |
| 475 "https://support.google.com/chrome/?p=ui_speech_input"; | 475 "https://support.google.com/chrome/?p=ui_speech_input"; |
| 476 | 476 |
| 477 const char kHotwordLearnMoreURL[] = |
| 478 "https://support.google.com/websearch/answer/3542118?p=ws_chromehotword&rd=1
"; |
| 479 |
| 477 const char kLearnMoreRegisterProtocolHandlerURL[] = | 480 const char kLearnMoreRegisterProtocolHandlerURL[] = |
| 478 "https://support.google.com/chrome/?p=ib_protocol_handler"; | 481 "https://support.google.com/chrome/?p=ib_protocol_handler"; |
| 479 | 482 |
| 480 const char kSyncLearnMoreURL[] = | 483 const char kSyncLearnMoreURL[] = |
| 481 "https://support.google.com/chrome/?p=settings_sign_in"; | 484 "https://support.google.com/chrome/?p=settings_sign_in"; |
| 482 | 485 |
| 483 const char kDownloadScanningLearnMoreURL[] = | 486 const char kDownloadScanningLearnMoreURL[] = |
| 484 "https://support.google.com/chrome/?p=ib_download_blocked"; | 487 "https://support.google.com/chrome/?p=ib_download_blocked"; |
| 485 | 488 |
| 486 const char kDownloadInterruptedLearnMoreURL[] = | 489 const char kDownloadInterruptedLearnMoreURL[] = |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 665 "https://support.google.com/chrome/?p=ib_access_cam_mic"; | 668 "https://support.google.com/chrome/?p=ib_access_cam_mic"; |
| 666 | 669 |
| 667 const char kLanguageSettingsLearnMoreUrl[] = | 670 const char kLanguageSettingsLearnMoreUrl[] = |
| 668 #if defined(OS_CHROMEOS) | 671 #if defined(OS_CHROMEOS) |
| 669 "https://support.google.com/chromebook/answer/1059490"; | 672 "https://support.google.com/chromebook/answer/1059490"; |
| 670 #else | 673 #else |
| 671 "https://support.google.com/chrome/topic/1678461"; | 674 "https://support.google.com/chrome/topic/1678461"; |
| 672 #endif | 675 #endif |
| 673 | 676 |
| 674 } // namespace chrome | 677 } // namespace chrome |
| OLD | NEW |