| 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/macros.h" | 9 #include "base/macros.h" |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 444 #if defined(OS_CHROMEOS) | 444 #if defined(OS_CHROMEOS) |
| 445 #if defined(GOOGLE_CHROME_BUILD) | 445 #if defined(GOOGLE_CHROME_BUILD) |
| 446 "chrome-extension://honijodknafkokifofgiaalefdiedpko/main.html"; | 446 "chrome-extension://honijodknafkokifofgiaalefdiedpko/main.html"; |
| 447 #else | 447 #else |
| 448 "https://support.google.com/chromebook/?p=help&ctx=settings"; | 448 "https://support.google.com/chromebook/?p=help&ctx=settings"; |
| 449 #endif // defined(GOOGLE_CHROME_BUILD | 449 #endif // defined(GOOGLE_CHROME_BUILD |
| 450 #else | 450 #else |
| 451 "https://support.google.com/chrome/?p=help&ctx=settings"; | 451 "https://support.google.com/chrome/?p=help&ctx=settings"; |
| 452 #endif // defined(OS_CHROMEOS) | 452 #endif // defined(OS_CHROMEOS) |
| 453 | 453 |
| 454 const char kChromeBetaForumURL[] = |
| 455 "https://support.google.com/chrome/?p=beta_forum"; |
| 456 |
| 454 #if defined(OS_CHROMEOS) | 457 #if defined(OS_CHROMEOS) |
| 455 const char kChromeAccessibilityHelpURL[] = | 458 const char kChromeAccessibilityHelpURL[] = |
| 456 "https://support.google.com/chromebook/topic/6323347"; | 459 "https://support.google.com/chromebook/topic/6323347"; |
| 457 const char kChromeAccessibilitySettingsURL[] = | 460 const char kChromeAccessibilitySettingsURL[] = |
| 458 "/chromevox/background/options.html"; | 461 "/chromevox/background/options.html"; |
| 459 const char kChromePaletteHelpURL[] = | 462 const char kChromePaletteHelpURL[] = |
| 460 "https://support.google.com/chromebook?p=stylus_help"; | 463 "https://support.google.com/chromebook?p=stylus_help"; |
| 461 #endif // defined(OS_CHROMEOS) | 464 #endif // defined(OS_CHROMEOS) |
| 462 | 465 |
| 463 #if BUILDFLAG(ENABLE_ONE_CLICK_SIGNIN) | 466 #if BUILDFLAG(ENABLE_ONE_CLICK_SIGNIN) |
| (...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 829 #endif | 832 #endif |
| 830 | 833 |
| 831 const char kChooserUsbOverviewURL[] = | 834 const char kChooserUsbOverviewURL[] = |
| 832 "https://support.google.com/chrome?p=webusb"; | 835 "https://support.google.com/chrome?p=webusb"; |
| 833 | 836 |
| 834 #if defined(OS_CHROMEOS) | 837 #if defined(OS_CHROMEOS) |
| 835 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; | 838 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; |
| 836 #endif | 839 #endif |
| 837 | 840 |
| 838 } // namespace chrome | 841 } // namespace chrome |
| OLD | NEW |