Chromium Code Reviews| 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 682 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 693 | 693 |
| 694 #if defined(OS_MACOSX) | 694 #if defined(OS_MACOSX) |
| 695 const char kMac32BitDeprecationURL[] = | 695 const char kMac32BitDeprecationURL[] = |
| 696 #if !defined(ARCH_CPU_64_BITS) | 696 #if !defined(ARCH_CPU_64_BITS) |
| 697 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; | 697 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; |
| 698 #else | 698 #else |
| 699 ""; | 699 ""; |
| 700 #endif | 700 #endif |
| 701 #endif | 701 #endif |
| 702 | 702 |
| 703 // TODO(tengs): Replace with real URLs when ready. | |
| 704 const char kEasyUnlockLearnMoreUrl[] = "https://support.google.com/chrome/"; | |
| 705 const char kEasyUnlockManagementUrl[] = "https://chrome.com"; | |
| 706 | |
| 707 | |
|
xiyuan
2014/03/15 00:54:56
nit: nuke one empty line
Tim Song
2014/03/17 19:12:07
Done.
| |
| 703 } // namespace chrome | 708 } // namespace chrome |
| OLD | NEW |