| 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 690 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 701 | 701 |
| 702 #if defined(OS_MACOSX) | 702 #if defined(OS_MACOSX) |
| 703 const char kMac32BitDeprecationURL[] = | 703 const char kMac32BitDeprecationURL[] = |
| 704 #if !defined(ARCH_CPU_64_BITS) | 704 #if !defined(ARCH_CPU_64_BITS) |
| 705 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; | 705 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; |
| 706 #else | 706 #else |
| 707 ""; | 707 ""; |
| 708 #endif | 708 #endif |
| 709 #endif | 709 #endif |
| 710 | 710 |
| 711 // TODO(tengs): Replace with real URL when ready. |
| 712 const char kEasyUnlockLearnMoreUrl[] = |
| 713 "https://support.google.com/chromebook/?p=easy_unlock"; |
| 714 const char kEasyUnlockManagementUrl[] = "https://chrome.com"; |
| 715 |
| 711 } // namespace chrome | 716 } // namespace chrome |
| OLD | NEW |