Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(37)

Side by Side Diff: chrome/browser/mac/obsolete_system.h

Issue 663223002: Flip 32-bit warning string to let users know it’s the end of the line (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698