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

Unified Diff: third_party/mozilla/NSWorkspace+Utils.m

Issue 10825447: chrome/browser should build on the x86_64 architecture (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 8 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: third_party/mozilla/NSWorkspace+Utils.m
diff --git a/third_party/mozilla/NSWorkspace+Utils.m b/third_party/mozilla/NSWorkspace+Utils.m
index e3d052cef2ad4ee019807f1cd5dc63b0e348020e..157f1d0649b6bf4867cc2aa4457fb001cffa73c4 100644
--- a/third_party/mozilla/NSWorkspace+Utils.m
+++ b/third_party/mozilla/NSWorkspace+Utils.m
@@ -164,10 +164,10 @@
//
+ (long)systemVersion
{
- static long sSystemVersion = 0;
+ static SInt32 sSystemVersion = 0;
Mark Mentovai 2012/08/20 13:25:58 When you make a change to most files in a third_pa
if (!sSystemVersion)
Gestalt(gestaltSystemVersion, &sSystemVersion);
- return sSystemVersion;
+ return (long)sSystemVersion;
}
//

Powered by Google App Engine
This is Rietveld 408576698