| 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 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 388 const char kChromeSyncMergeTroubleshootingURL[] = | 388 const char kChromeSyncMergeTroubleshootingURL[] = |
| 389 "https://support.google.com/chrome/answer/1181420#merge"; | 389 "https://support.google.com/chrome/answer/1181420#merge"; |
| 390 #endif // defined(ENABLE_ONE_CLICK_SIGNIN) | 390 #endif // defined(ENABLE_ONE_CLICK_SIGNIN) |
| 391 | 391 |
| 392 const char kChromeEnterpriseSignInLearnMoreURL[] = | 392 const char kChromeEnterpriseSignInLearnMoreURL[] = |
| 393 "http://support.google.com/chromeos/bin/answer.py?hl=en&answer=1331549"; | 393 "http://support.google.com/chromeos/bin/answer.py?hl=en&answer=1331549"; |
| 394 | 394 |
| 395 const char kResetProfileSettingsLearnMoreURL[] = | 395 const char kResetProfileSettingsLearnMoreURL[] = |
| 396 "https://support.google.com/chrome/?p=ui_reset_settings"; | 396 "https://support.google.com/chrome/?p=ui_reset_settings"; |
| 397 | 397 |
| 398 const char kAutomaticSettingsResetLearnMoreURL[] = |
| 399 "https://support.google.com/chrome/?p=ui_automatic_settings_reset"; |
| 400 |
| 398 const char kSupervisedUserManagementURL[] = "https://www.chrome.com/manage"; | 401 const char kSupervisedUserManagementURL[] = "https://www.chrome.com/manage"; |
| 399 | 402 |
| 400 const char kSupervisedUserManagementDisplayURL[] = "www.chrome.com/manage"; | 403 const char kSupervisedUserManagementDisplayURL[] = "www.chrome.com/manage"; |
| 401 | 404 |
| 402 const char kSettingsSearchHelpURL[] = | 405 const char kSettingsSearchHelpURL[] = |
| 403 #if defined(OS_CHROMEOS) | 406 #if defined(OS_CHROMEOS) |
| 404 "https://support.google.com/chromeos/?p=settings_search_help"; | 407 "https://support.google.com/chromeos/?p=settings_search_help"; |
| 405 #else | 408 #else |
| 406 "https://support.google.com/chrome/?p=settings_search_help"; | 409 "https://support.google.com/chrome/?p=settings_search_help"; |
| 407 #endif | 410 #endif |
| (...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 683 #if defined(OS_MACOSX) | 686 #if defined(OS_MACOSX) |
| 684 const char kMac32BitDeprecationURL[] = | 687 const char kMac32BitDeprecationURL[] = |
| 685 #if !defined(ARCH_CPU_64_BITS) | 688 #if !defined(ARCH_CPU_64_BITS) |
| 686 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; | 689 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; |
| 687 #else | 690 #else |
| 688 ""; | 691 ""; |
| 689 #endif | 692 #endif |
| 690 #endif | 693 #endif |
| 691 | 694 |
| 692 } // namespace chrome | 695 } // namespace chrome |
| OLD | NEW |