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

Side by Side Diff: chrome/browser/app_controller_mac.mm

Issue 196103: Add "New Window" and "New Incognito Window" items to the Dock Menu.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #import "chrome/browser/app_controller_mac.h" 5 #import "chrome/browser/app_controller_mac.h"
6 6
7 #include "app/l10n_util.h" 7 #include "app/l10n_util_mac.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/mac_util.h" 9 #include "base/mac_util.h"
10 #include "base/message_loop.h" 10 #include "base/message_loop.h"
11 #include "base/sys_string_conversions.h" 11 #include "base/sys_string_conversions.h"
12 #include "chrome/app/chrome_dll_resource.h" 12 #include "chrome/app/chrome_dll_resource.h"
13 #include "chrome/browser/browser.h" 13 #include "chrome/browser/browser.h"
14 #include "chrome/browser/browser_init.h" 14 #include "chrome/browser/browser_init.h"
15 #include "chrome/browser/browser_list.h" 15 #include "chrome/browser/browser_list.h"
16 #include "chrome/browser/browser_process.h" 16 #include "chrome/browser/browser_process.h"
17 #include "chrome/browser/browser_shutdown.h" 17 #include "chrome/browser/browser_shutdown.h"
(...skipping 23 matching lines...) Expand all
41 - (void)initMenuState; 41 - (void)initMenuState;
42 - (void)openURLs:(const std::vector<GURL>&)urls; 42 - (void)openURLs:(const std::vector<GURL>&)urls;
43 - (void)openPendingURLs; 43 - (void)openPendingURLs;
44 - (void)getUrl:(NSAppleEventDescriptor*)event 44 - (void)getUrl:(NSAppleEventDescriptor*)event
45 withReply:(NSAppleEventDescriptor*)reply; 45 withReply:(NSAppleEventDescriptor*)reply;
46 - (void)openFiles:(NSAppleEventDescriptor*)event 46 - (void)openFiles:(NSAppleEventDescriptor*)event
47 withReply:(NSAppleEventDescriptor*)reply; 47 withReply:(NSAppleEventDescriptor*)reply;
48 - (void)windowLayeringDidChange:(NSNotification*)inNotification; 48 - (void)windowLayeringDidChange:(NSNotification*)inNotification;
49 - (BOOL)userWillWaitForInProgressDownloads:(int)downloadCount; 49 - (BOOL)userWillWaitForInProgressDownloads:(int)downloadCount;
50 - (BOOL)shouldQuitWithInProgressDownloads; 50 - (BOOL)shouldQuitWithInProgressDownloads;
51 - (NSMenu*)applicationDockMenu:(NSApplication*)sender;
51 @end 52 @end
52 53
53 @implementation AppController 54 @implementation AppController
54 55
55 // This method is called very early in application startup (ie, before 56 // This method is called very early in application startup (ie, before
56 // the profile is loaded or any preferences have been registered). Defer any 57 // the profile is loaded or any preferences have been registered). Defer any
57 // user-data initialization until -applicationDidFinishLaunching:. 58 // user-data initialization until -applicationDidFinishLaunching:.
58 - (void)awakeFromNib { 59 - (void)awakeFromNib {
59 pendingURLs_.reset(new std::vector<GURL>()); 60 pendingURLs_.reset(new std::vector<GURL>());
60 61
(...skipping 598 matching lines...) Expand 10 before | Expand all | Expand 10 after
659 addObserver:self 660 addObserver:self
660 selector:@selector(aboutWindowClosed:) 661 selector:@selector(aboutWindowClosed:)
661 name:kUserClosedAboutNotification 662 name:kUserClosedAboutNotification
662 object:aboutController_.get()]; 663 object:aboutController_.get()];
663 } 664 }
664 if (![[aboutController_ window] isVisible]) 665 if (![[aboutController_ window] isVisible])
665 [[aboutController_ window] center]; 666 [[aboutController_ window] center];
666 [aboutController_ showWindow:self]; 667 [aboutController_ showWindow:self];
667 } 668 }
668 669
670 - (NSMenu*)applicationDockMenu:(id)sender {
671 NSMenu* result = [[[NSMenu alloc] initWithTitle: @""] autorelease];
pink (ping after 24hrs) 2009/09/14 19:13:03 rather than autoreleasing, we prefer to use scoped
John Grabowski 2009/09/14 21:22:22 For this line here, I don't think so. If it was a
sgk 2009/09/14 22:10:53 In fact, it does fail as you'd expect (message sen
672 NSString* titleStr;
pink (ping after 24hrs) 2009/09/14 19:13:03 these should be declared on the same line as they
673 id item;
674
675 titleStr = l10n_util::GetNSStringWithFixup(IDS_NEW_WINDOW_MAC);
676 item = [[[NSMenuItem alloc] initWithTitle:titleStr
677 action:@selector(commandDispatch:)
678 keyEquivalent:@""] autorelease];
679 [item setTarget:self];
680 [item setTag:IDC_NEW_WINDOW];
681 [result addItem:item];
682
683 titleStr = l10n_util::GetNSStringWithFixup(IDS_NEW_INCOGNITO_WINDOW_MAC);
684 item = [[[NSMenuItem alloc] initWithTitle:titleStr
685 action:@selector(commandDispatch:)
686 keyEquivalent:@""] autorelease];
687 [item setTarget:self];
688 [item setTag:IDC_NEW_INCOGNITO_WINDOW];
689 [result addItem:item];
690
691 return result;
692 }
693
669 @end 694 @end
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/app_controller_mac_unittest.mm » ('j') | chrome/browser/app_controller_mac_unittest.mm » ('J')

Powered by Google App Engine
This is Rietveld 408576698