summaryrefslogtreecommitdiffstats
path: root/chrome/browser/app_controller_mac.mm
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/app_controller_mac.mm')
-rw-r--r--chrome/browser/app_controller_mac.mm5
1 files changed, 0 insertions, 5 deletions
diff --git a/chrome/browser/app_controller_mac.mm b/chrome/browser/app_controller_mac.mm
index 3920fc6..be11db3 100644
--- a/chrome/browser/app_controller_mac.mm
+++ b/chrome/browser/app_controller_mac.mm
@@ -628,10 +628,6 @@
}
- (IBAction)orderFrontStandardAboutPanel:(id)sender {
-#if !defined(GOOGLE_CHROME_BUILD)
- // If not branded behave like a generic Cocoa app.
- [NSApp orderFrontStandardAboutPanel:sender];
-#else
// Otherwise bring up our special dialog (e.g. with an auto-update button).
if (!aboutController_) {
aboutController_.reset([[AboutWindowController alloc]
@@ -656,7 +652,6 @@
if (![[aboutController_ window] isVisible])
[[aboutController_ window] center];
[aboutController_ showWindow:self];
-#endif
}
@end