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

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: 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..597d5e12c3abcce9a2eb6e835e8e99923e1b9757 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:@"%d",
Mark Mentovai 2012/08/20 13:25:58 Same.
+ static_cast<int32_t>(count)]];
}
- (void)setDisplayViewMessages:(BOOL)display {

Powered by Google App Engine
This is Rietveld 408576698