| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef CHROME_BROWSER_MAC_OBSOLETE_SYSTEM_H_ | 5 #ifndef CHROME_BROWSER_MAC_OBSOLETE_SYSTEM_H_ |
| 6 #define CHROME_BROWSER_MAC_OBSOLETE_SYSTEM_H_ | 6 #define CHROME_BROWSER_MAC_OBSOLETE_SYSTEM_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/strings/string16.h" | 9 #include "base/strings/string16.h" |
| 10 | 10 |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 #if !defined(ARCH_CPU_64_BITS) | 38 #if !defined(ARCH_CPU_64_BITS) |
| 39 static base::string16 LocalizedObsoleteSystemString(); | 39 static base::string16 LocalizedObsoleteSystemString(); |
| 40 #else | 40 #else |
| 41 static base::string16 LocalizedObsoleteSystemString() { | 41 static base::string16 LocalizedObsoleteSystemString() { |
| 42 return base::string16(); | 42 return base::string16(); |
| 43 } | 43 } |
| 44 #endif | 44 #endif |
| 45 | 45 |
| 46 // true if this is the final release that will run on 32-bit-only systems. | 46 // true if this is the final release that will run on 32-bit-only systems. |
| 47 static bool Is32BitEndOfTheLine() { | 47 static bool Is32BitEndOfTheLine() { |
| 48 // TODO(mark): Change to true immediately prior to the final build that | 48 return true; |
| 49 // supports 32-bit-only systems. | |
| 50 return false; | |
| 51 } | 49 } |
| 52 | 50 |
| 53 private: | 51 private: |
| 54 DISALLOW_IMPLICIT_CONSTRUCTORS(ObsoleteSystemMac); | 52 DISALLOW_IMPLICIT_CONSTRUCTORS(ObsoleteSystemMac); |
| 55 }; | 53 }; |
| 56 | 54 |
| 57 #endif // CHROME_BROWSER_MAC_OBSOLETE_SYSTEM_H_ | 55 #endif // CHROME_BROWSER_MAC_OBSOLETE_SYSTEM_H_ |
| OLD | NEW |