| 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 452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 463 | 463 |
| 464 const char kOutdatedPluginLearnMoreURL[] = | 464 const char kOutdatedPluginLearnMoreURL[] = |
| 465 "https://support.google.com/chrome/?p=ib_outdated_plugin"; | 465 "https://support.google.com/chrome/?p=ib_outdated_plugin"; |
| 466 | 466 |
| 467 const char kBlockedPluginLearnMoreURL[] = | 467 const char kBlockedPluginLearnMoreURL[] = |
| 468 "https://support.google.com/chrome/?p=ib_blocked_plugin"; | 468 "https://support.google.com/chrome/?p=ib_blocked_plugin"; |
| 469 | 469 |
| 470 const char kSpeechInputAboutURL[] = | 470 const char kSpeechInputAboutURL[] = |
| 471 "https://support.google.com/chrome/?p=ui_speech_input"; | 471 "https://support.google.com/chrome/?p=ui_speech_input"; |
| 472 | 472 |
| 473 const char kHotwordLearnMoreURL[] = |
| 474 "https://support.google.com/websearch/answer/3542118?p=ws_chromehotword&rd=1
"; |
| 475 |
| 473 const char kLearnMoreRegisterProtocolHandlerURL[] = | 476 const char kLearnMoreRegisterProtocolHandlerURL[] = |
| 474 "https://support.google.com/chrome/?p=ib_protocol_handler"; | 477 "https://support.google.com/chrome/?p=ib_protocol_handler"; |
| 475 | 478 |
| 476 const char kSyncLearnMoreURL[] = | 479 const char kSyncLearnMoreURL[] = |
| 477 "https://support.google.com/chrome/?p=settings_sign_in"; | 480 "https://support.google.com/chrome/?p=settings_sign_in"; |
| 478 | 481 |
| 479 const char kDownloadScanningLearnMoreURL[] = | 482 const char kDownloadScanningLearnMoreURL[] = |
| 480 "https://support.google.com/chrome/?p=ib_download_blocked"; | 483 "https://support.google.com/chrome/?p=ib_download_blocked"; |
| 481 | 484 |
| 482 const char kDownloadInterruptedLearnMoreURL[] = | 485 const char kDownloadInterruptedLearnMoreURL[] = |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 670 #if defined(OS_MACOSX) | 673 #if defined(OS_MACOSX) |
| 671 const char kMac32BitDeprecationURL[] = | 674 const char kMac32BitDeprecationURL[] = |
| 672 #if !defined(ARCH_CPU_64_BITS) | 675 #if !defined(ARCH_CPU_64_BITS) |
| 673 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; | 676 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; |
| 674 #else | 677 #else |
| 675 ""; | 678 ""; |
| 676 #endif | 679 #endif |
| 677 #endif | 680 #endif |
| 678 | 681 |
| 679 } // namespace chrome | 682 } // namespace chrome |
| OLD | NEW |