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

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: Rebased on the updated trunk. 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
« no previous file with comments | « chrome/browser/ui/cocoa/notifications/balloon_view.mm ('k') | third_party/mozilla/README.chromium » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
if (!sSystemVersion)
Gestalt(gestaltSystemVersion, &sSystemVersion);
- return sSystemVersion;
+ return (long)sSystemVersion;
}
//
« no previous file with comments | « chrome/browser/ui/cocoa/notifications/balloon_view.mm ('k') | third_party/mozilla/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698