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

Side by Side Diff: chrome/browser/ui/cocoa/browser_window_cocoa.mm

Issue 9197020: Merge 117260 - Fix bug 104170: [Mac OS] Best-fit-window-zoom doesn't work anymore (Closed) Base URL: svn://svn.chromium.org/chrome/branches/963/src/
Patch Set: Created 8 years, 11 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
« no previous file with comments | « chrome/browser/ui/cocoa/browser_window_cocoa.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #include "chrome/browser/ui/cocoa/browser_window_cocoa.h" 5 #include "chrome/browser/ui/cocoa/browser_window_cocoa.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/logging.h" 9 #include "base/logging.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_command_ids.h" 12 #include "chrome/app/chrome_command_ids.h"
13 #include "chrome/browser/bookmarks/bookmark_utils.h" 13 #include "chrome/browser/bookmarks/bookmark_utils.h"
14 #include "chrome/browser/download/download_shelf.h" 14 #include "chrome/browser/download/download_shelf.h"
15 #include "chrome/browser/prefs/pref_service.h" 15 #include "chrome/browser/prefs/pref_service.h"
16 #include "chrome/browser/profiles/profile.h" 16 #include "chrome/browser/profiles/profile.h"
17 #include "chrome/browser/sidebar/sidebar_container.h" 17 #include "chrome/browser/sidebar/sidebar_container.h"
18 #include "chrome/browser/sidebar/sidebar_manager.h" 18 #include "chrome/browser/sidebar/sidebar_manager.h"
19 #include "chrome/browser/tab_contents/tab_contents_view_mac.h"
19 #include "chrome/browser/ui/browser.h" 20 #include "chrome/browser/ui/browser.h"
20 #include "chrome/browser/ui/browser_list.h" 21 #include "chrome/browser/ui/browser_list.h"
21 #import "chrome/browser/ui/cocoa/browser/avatar_button_controller.h" 22 #import "chrome/browser/ui/cocoa/browser/avatar_button_controller.h"
22 #import "chrome/browser/ui/cocoa/browser/avatar_menu_bubble_controller.h" 23 #import "chrome/browser/ui/cocoa/browser/avatar_menu_bubble_controller.h"
23 #import "chrome/browser/ui/cocoa/browser/edit_search_engine_cocoa_controller.h" 24 #import "chrome/browser/ui/cocoa/browser/edit_search_engine_cocoa_controller.h"
24 #import "chrome/browser/ui/cocoa/browser_window_controller.h" 25 #import "chrome/browser/ui/cocoa/browser_window_controller.h"
25 #import "chrome/browser/ui/cocoa/browser_window_utils.h" 26 #import "chrome/browser/ui/cocoa/browser_window_utils.h"
26 #import "chrome/browser/ui/cocoa/chrome_event_processing_window.h" 27 #import "chrome/browser/ui/cocoa/chrome_event_processing_window.h"
27 #import "chrome/browser/ui/cocoa/content_settings/collected_cookies_mac.h" 28 #import "chrome/browser/ui/cocoa/content_settings/collected_cookies_mac.h"
28 #import "chrome/browser/ui/cocoa/download/download_shelf_controller.h" 29 #import "chrome/browser/ui/cocoa/download/download_shelf_controller.h"
(...skipping 601 matching lines...) Expand 10 before | Expand all | Expand 10 after
630 AvatarMenuBubbleController* menu = 631 AvatarMenuBubbleController* menu =
631 [[AvatarMenuBubbleController alloc] initWithBrowser:browser_ 632 [[AvatarMenuBubbleController alloc] initWithBrowser:browser_
632 anchoredAt:point]; 633 anchoredAt:point];
633 [[menu bubble] setAlignment:info_bubble::kAlignEdgeToAnchorEdge]; 634 [[menu bubble] setAlignment:info_bubble::kAlignEdgeToAnchorEdge];
634 [menu showWindow:nil]; 635 [menu showWindow:nil];
635 } 636 }
636 637
637 void BrowserWindowCocoa::ShowAvatarBubbleFromAvatarButton() { 638 void BrowserWindowCocoa::ShowAvatarBubbleFromAvatarButton() {
638 [[controller_ avatarButtonController] showAvatarBubble]; 639 [[controller_ avatarButtonController] showAvatarBubble];
639 } 640 }
641
642 void BrowserWindowCocoa::UpdatePreferredSize(TabContents* tab_contents,
643 const gfx::Size& pref_size) {
644 static_cast<TabContentsViewMac*>(tab_contents->view())->
645 set_preferred_width(pref_size.width());
646 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/cocoa/browser_window_cocoa.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698