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

Unified Diff: chrome/browser/ui/cocoa/about_ipc_controller.mm

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
Index: chrome/browser/ui/cocoa/about_ipc_controller.mm
diff --git a/chrome/browser/ui/cocoa/about_ipc_controller.mm b/chrome/browser/ui/cocoa/about_ipc_controller.mm
index 7a3654aff764e58e55ee113f45ef27cb4efee25b..cea1dda152680bfc7e3892fa861361df3b20129a 100644
--- a/chrome/browser/ui/cocoa/about_ipc_controller.mm
+++ b/chrome/browser/ui/cocoa/about_ipc_controller.mm
@@ -185,7 +185,8 @@ AboutIPCController* gSharedController = nil;
NSUInteger count = [[dataController_ arrangedObjects] count];
// Uncomment if you want scroll-to-end behavior... but seems expensive.
// [tableView_ scrollRowToVisible:count-1];
- [eventCount_ setStringValue:[NSString stringWithFormat:@"%d", count]];
+ [eventCount_ setStringValue:[NSString stringWithFormat:@"%ld",
+ static_cast<long>(count)]];
}
- (void)setDisplayViewMessages:(BOOL)display {
« no previous file with comments | « chrome/browser/chrome_browser_application_mac.mm ('k') | chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698