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