| 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 436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 447 "https://support.google.com/chrome/?p=settings_omnibox"; | 447 "https://support.google.com/chrome/?p=settings_omnibox"; |
| 448 #endif | 448 #endif |
| 449 | 449 |
| 450 const char kPageInfoHelpCenterURL[] = | 450 const char kPageInfoHelpCenterURL[] = |
| 451 #if defined(OS_CHROMEOS) | 451 #if defined(OS_CHROMEOS) |
| 452 "https://support.google.com/chromeos/?p=ui_security_indicator"; | 452 "https://support.google.com/chromeos/?p=ui_security_indicator"; |
| 453 #else | 453 #else |
| 454 "https://support.google.com/chrome/?p=ui_security_indicator"; | 454 "https://support.google.com/chrome/?p=ui_security_indicator"; |
| 455 #endif | 455 #endif |
| 456 | 456 |
| 457 const char kCrashReasonURL[] = | |
| 458 #if defined(OS_CHROMEOS) | |
| 459 "https://support.google.com/chromeos/?p=e_awsnap"; | |
| 460 #else | |
| 461 "https://support.google.com/chrome/?p=e_awsnap"; | |
| 462 #endif | |
| 463 | |
| 464 const char kKillReasonURL[] = | |
| 465 #if defined(OS_CHROMEOS) | |
| 466 "https://support.google.com/chromeos/?p=e_deadjim"; | |
| 467 #else | |
| 468 "https://support.google.com/chrome/?p=e_deadjim"; | |
| 469 #endif | |
| 470 | |
| 471 const char kPrivacyLearnMoreURL[] = | 457 const char kPrivacyLearnMoreURL[] = |
| 472 #if defined(OS_CHROMEOS) | 458 #if defined(OS_CHROMEOS) |
| 473 "https://support.google.com/chromeos/?p=settings_privacy"; | 459 "https://support.google.com/chromeos/?p=settings_privacy"; |
| 474 #else | 460 #else |
| 475 "https://support.google.com/chrome/?p=settings_privacy"; | 461 "https://support.google.com/chrome/?p=settings_privacy"; |
| 476 #endif | 462 #endif |
| 477 | 463 |
| 478 const char kDoNotTrackLearnMoreURL[] = | 464 const char kDoNotTrackLearnMoreURL[] = |
| 479 #if defined(OS_CHROMEOS) | 465 #if defined(OS_CHROMEOS) |
| 480 "https://support.google.com/chromeos/?p=settings_do_not_track"; | 466 "https://support.google.com/chromeos/?p=settings_do_not_track"; |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 719 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; | 705 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; |
| 720 #else | 706 #else |
| 721 ""; | 707 ""; |
| 722 #endif | 708 #endif |
| 723 #endif | 709 #endif |
| 724 | 710 |
| 725 const char kEasyUnlockLearnMoreUrl[] = | 711 const char kEasyUnlockLearnMoreUrl[] = |
| 726 "https://support.google.com/chromebook/answer/6070209"; | 712 "https://support.google.com/chromebook/answer/6070209"; |
| 727 | 713 |
| 728 } // namespace chrome | 714 } // namespace chrome |
| OLD | NEW |