1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #import "chrome/browser/ui/cocoa/website_settings/website_settings_bubble_controller.h"
9 #import <AppKit/AppKit.h>
11 #include "base/mac/bind_objc_block.h"
12 #include "base/strings/string_number_conversions.h"
13 #include "base/strings/sys_string_conversions.h"
14 #import "chrome/browser/certificate_viewer.h"
15 #include "chrome/browser/infobars/infobar_service.h"
16 #import "chrome/browser/ui/cocoa/browser_window_controller.h"
17 #import "chrome/browser/ui/cocoa/info_bubble_view.h"
18 #import "chrome/browser/ui/cocoa/info_bubble_window.h"
19 #import "chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.h"
20 #import "chrome/browser/ui/cocoa/website_settings/permission_selector_button.h"
21 #import "chrome/browser/ui/tab_dialogs.h"
22 #include "chrome/browser/ui/website_settings/permission_menu_model.h"
23 #include "chrome/browser/ui/website_settings/website_settings_utils.h"
24 #include "chrome/common/url_constants.h"
25 #include "chrome/grit/chromium_strings.h"
26 #include "chrome/grit/generated_resources.h"
27 #include "content/public/browser/cert_store.h"
28 #include "content/public/browser/page_navigator.h"
29 #include "content/public/browser/ssl_host_state_delegate.h"
30 #include "content/public/browser/user_metrics.h"
31 #include "content/public/browser/web_contents.h"
32 #include "grit/theme_resources.h"
33 #import "third_party/google_toolbox_for_mac/src/AppKit/GTMUILocalizerAndLayoutTweaker.h"
34 #import "ui/base/cocoa/controls/hyperlink_button_cell.h"
35 #import "ui/base/cocoa/flipped_view.h"
36 #include "ui/base/l10n/l10n_util.h"
37 #include "ui/base/resource/resource_bundle.h"
38 #include "ui/gfx/scoped_ns_graphics_context_save_gstate_mac.h"
42 // The default width of the window, in view coordinates. It may be larger to
44 const CGFloat kDefaultWindowWidth = 310;
46 // Spacing in between sections.
47 const CGFloat kVerticalSpacing = 10;
49 // Padding between the window frame and content.
50 const CGFloat kFramePadding = 20;
52 // Padding between the window frame and content for the internal page bubble.
53 const CGFloat kInternalPageFramePadding = 10;
55 // Spacing between the headlines and description text on the Connection tab.
56 const CGFloat kConnectionHeadlineSpacing = 2;
58 // Spacing between images on the Connection tab and the text.
59 const CGFloat kConnectionImageSpacing = 10;
61 // Spacing between the image and text for internal pages.
62 const CGFloat kInternalPageImageSpacing = 10;
64 // Square size of the images on the Connections tab.
65 const CGFloat kConnectionImageSize = 30;
67 // Square size of the image that is shown for internal pages.
68 const CGFloat kInternalPageImageSize = 26;
70 // Square size of the permission images.
71 const CGFloat kPermissionImageSize = 19;
73 // Vertical adjustment for the permission images. They have an extra pixel of
74 // padding on the bottom edge.
75 const CGFloat kPermissionImageYAdjust = 1;
77 // Spacing between a permission image and the text.
78 const CGFloat kPermissionImageSpacing = 3;
80 // The spacing between individual items in the Permissions tab.
81 const CGFloat kPermissionsTabSpacing = 12;
83 // Extra spacing after a headline on the Permissions tab.
84 const CGFloat kPermissionsHeadlineSpacing = 2;
86 // The amount of horizontal space between a permission label and the popup.
87 const CGFloat kPermissionPopUpXSpacing = 3;
89 // The extra space to the left of the first tab in the tab strip.
90 const CGFloat kTabStripXPadding = kFramePadding;
92 // The amount of space between the visual borders of adjacent tabs.
93 const CGFloat kTabSpacing = 4;
95 // The amount of space above the tab strip.
96 const CGFloat kTabStripTopSpacing = 14;
98 // The height of the clickable area of the tab.
99 const CGFloat kTabHeight = 28;
101 // The amount of space above tab labels.
102 const CGFloat kTabLabelTopPadding = 6;
104 // The amount of padding to leave on either side of the tab label.
105 const CGFloat kTabLabelXPadding = 12;
107 // Return the text color to use for the identity status when the site's
108 // identity has been verified.
109 NSColor* IdentityVerifiedTextColor() {
110 // RGB components are specified using integer RGB [0-255] values for easy
111 // comparison to other platforms.
112 return [NSColor colorWithCalibratedRed:0x07/255.0
120 @interface WebsiteSettingsTabSegmentedCell : NSSegmentedCell {
122 base::scoped_nsobject<NSImage> tabstripCenterImage_;
123 base::scoped_nsobject<NSImage> tabstripLeftImage_;
124 base::scoped_nsobject<NSImage> tabstripRightImage_;
126 base::scoped_nsobject<NSImage> tabCenterImage_;
127 base::scoped_nsobject<NSImage> tabLeftImage_;
128 base::scoped_nsobject<NSImage> tabRightImage_;
130 // Key track of the index of segment which has keyboard focus. This is not
131 // the same as the currently selected segment.
132 NSInteger keySegment_;
135 // The text attributes to use for the tab labels.
136 + (NSDictionary*)textAttributes;
140 @implementation WebsiteSettingsTabSegmentedCell
142 + (NSDictionary*)textAttributes {
143 NSFont* smallSystemFont =
144 [NSFont systemFontOfSize:[NSFont smallSystemFontSize]];
145 return @{ NSFontAttributeName : smallSystemFont };
149 if ((self = [super init])) {
150 ResourceBundle& rb = ResourceBundle::GetSharedInstance();
151 tabstripCenterImage_.reset(rb.GetNativeImageNamed(
152 IDR_WEBSITE_SETTINGS_TABSTRIP_CENTER).CopyNSImage());
153 tabstripLeftImage_.reset(rb.GetNativeImageNamed(
154 IDR_WEBSITE_SETTINGS_TABSTRIP_LEFT).CopyNSImage());
155 tabstripRightImage_.reset(rb.GetNativeImageNamed(
156 IDR_WEBSITE_SETTINGS_TABSTRIP_RIGHT).CopyNSImage());
158 tabCenterImage_.reset(
159 rb.GetNativeImageNamed(IDR_WEBSITE_SETTINGS_TAB_CENTER2).CopyNSImage());
161 rb.GetNativeImageNamed(IDR_WEBSITE_SETTINGS_TAB_LEFT2).CopyNSImage());
162 tabRightImage_.reset(
163 rb.GetNativeImageNamed(IDR_WEBSITE_SETTINGS_TAB_RIGHT2).CopyNSImage());
168 // Called when keyboard focus in the segmented control is moved forward.
169 - (void)makeNextSegmentKey {
170 [super makeNextSegmentKey];
171 keySegment_ = (keySegment_ + 1) % [self segmentCount];
174 // Called when keyboard focus in the segmented control is moved backwards.
175 - (void)makePreviousSegmentKey {
176 [super makePreviousSegmentKey];
177 if (--keySegment_ < 0)
178 keySegment_ += [self segmentCount];
181 - (void)setSelectedSegment:(NSInteger)selectedSegment {
182 keySegment_ = selectedSegment;
183 [super setSelectedSegment:selectedSegment];
186 - (void)drawWithFrame:(NSRect)cellFrame inView:(NSView*)controlView {
187 CGFloat tabstripHeight = [tabCenterImage_ size].height;
189 // Draw the tab for the selected segment.
190 NSRect tabRect = [self hitRectForSegment:[self selectedSegment]];
191 tabRect.origin.y = 0;
192 tabRect.size.height = tabstripHeight;
194 NSDrawThreePartImage(tabRect,
199 NSCompositeSourceOver,
203 // Draw the background to the left of the selected tab.
204 NSRect backgroundRect = NSMakeRect(0, 0, NSMinX(tabRect), tabstripHeight);
205 NSDrawThreePartImage(backgroundRect,
207 tabstripCenterImage_,
210 NSCompositeSourceOver,
214 // Draw the background to the right of the selected tab.
215 backgroundRect.origin.x = NSMaxX(tabRect);
216 backgroundRect.size.width = NSMaxX(cellFrame) - NSMaxX(tabRect);
217 NSDrawThreePartImage(backgroundRect,
219 tabstripCenterImage_,
222 NSCompositeSourceOver,
226 // Call the superclass method to trigger drawing of the tab labels.
227 NSRect interiorFrame = cellFrame;
228 interiorFrame.size.width = 0;
229 for (NSInteger i = 0; i < [self segmentCount]; ++i)
230 interiorFrame.size.width += [self widthForSegment:i];
231 [self drawInteriorWithFrame:interiorFrame inView:controlView];
233 if ([[controlView window] firstResponder] == controlView)
234 [self drawFocusRect];
237 - (void)drawFocusRect {
238 gfx::ScopedNSGraphicsContextSaveGState scoped_state;
239 NSSetFocusRingStyle(NSFocusRingOnly);
240 [[NSColor keyboardFocusIndicatorColor] set];
241 NSFrameRect([self hitRectForSegment:keySegment_]);
244 // Returns the segment number for the left-most positioned segment.
245 // On Right-to-Left languages, segment 0 is on the right.
246 - (NSInteger)leftSegment {
247 BOOL isRTL = [self userInterfaceLayoutDirection] ==
248 NSUserInterfaceLayoutDirectionRightToLeft;
249 return isRTL ? [self segmentCount] - 1 : 0;
252 // Return the hit rect (i.e., the visual bounds of the tab) for
253 // the given segment.
254 - (NSRect)hitRectForSegment:(NSInteger)segment {
255 CGFloat tabstripHeight = [tabCenterImage_ size].height;
256 DCHECK_GT(tabstripHeight, kTabHeight);
257 DCHECK([self segmentCount] == 2); // Assume 2 segments to keep things simple.
258 NSInteger leftSegment = [self leftSegment];
259 CGFloat xOrigin = segment == leftSegment ? kTabStripXPadding
260 : [self widthForSegment:leftSegment];
261 NSRect rect = NSMakeRect(xOrigin, tabstripHeight - kTabHeight,
262 [self widthForSegment:segment] - kTabStripXPadding,
264 return NSInsetRect(rect, kTabSpacing / 2, 0);
267 - (void)drawSegment:(NSInteger)segment
268 inFrame:(NSRect)tabFrame
269 withView:(NSView*)controlView {
270 // Adjust the tab's frame so that the label appears centered in the tab.
271 if (segment == [self leftSegment])
272 tabFrame.origin.x += kTabStripXPadding;
273 tabFrame.size.width -= kTabStripXPadding;
274 tabFrame.origin.y += kTabLabelTopPadding;
275 tabFrame.size.height -= kTabLabelTopPadding;
277 // Center the label's frame in the tab's frame.
278 NSString* label = [self labelForSegment:segment];
279 NSDictionary* textAttributes =
280 [WebsiteSettingsTabSegmentedCell textAttributes];
281 NSSize textSize = [label sizeWithAttributes:textAttributes];
283 labelFrame.size = textSize;
284 labelFrame.origin.x =
285 tabFrame.origin.x + (NSWidth(tabFrame) - textSize.width) / 2.0;
286 labelFrame.origin.y =
287 tabFrame.origin.y + (NSHeight(tabFrame) - textSize.height) / 2.0;
289 [label drawInRect:labelFrame withAttributes:textAttributes];
292 // Overrides the default tracking behavior to only respond to clicks inside the
293 // visual borders of the tab.
294 - (BOOL)startTrackingAt:(NSPoint)startPoint inView:(NSView *)controlView {
295 NSInteger segmentCount = [self segmentCount];
296 for (NSInteger i = 0; i < segmentCount; ++i) {
297 if (NSPointInRect(startPoint, [self hitRectForSegment:i]))
303 // Overrides the default cell height to take up the full height of the
304 // segmented control. Otherwise, clicks on the lower part of a tab will be
306 - (NSSize)cellSizeForBounds:(NSRect)aRect {
307 return NSMakeSize([super cellSizeForBounds:aRect].width,
308 [tabstripCenterImage_ size].height);
311 // Returns the minimum size required to display this cell.
312 // It should always be exactly as tall as the tabstrip background image.
314 return NSMakeSize([super cellSize].width,
315 [tabstripCenterImage_ size].height);
319 @implementation WebsiteSettingsBubbleController
321 - (CGFloat)defaultWindowWidth {
322 return kDefaultWindowWidth;
325 - (id)initWithParentWindow:(NSWindow*)parentWindow
326 websiteSettingsUIBridge:(WebsiteSettingsUIBridge*)bridge
327 webContents:(content::WebContents*)webContents
328 isInternalPage:(BOOL)isInternalPage {
329 DCHECK(parentWindow);
331 webContents_ = webContents;
333 // Use an arbitrary height; it will be changed in performLayout.
334 NSRect contentRect = NSMakeRect(0, 0, [self defaultWindowWidth], 1);
335 // Create an empty window into which content is placed.
336 base::scoped_nsobject<InfoBubbleWindow> window(
337 [[InfoBubbleWindow alloc] initWithContentRect:contentRect
338 styleMask:NSBorderlessWindowMask
339 backing:NSBackingStoreBuffered
342 if ((self = [super initWithWindow:window.get()
343 parentWindow:parentWindow
344 anchoredAt:NSZeroPoint])) {
345 [[self bubble] setArrowLocation:info_bubble::kTopLeft];
347 // Create the container view that uses flipped coordinates.
348 NSRect contentFrame = NSMakeRect(0, 0, [self defaultWindowWidth], 300);
350 [[FlippedView alloc] initWithFrame:contentFrame]);
352 // Replace the window's content.
353 [[[self window] contentView] setSubviews:
354 [NSArray arrayWithObject:contentView_.get()]];
357 [self initializeContentsForInternalPage];
359 [self initializeContents];
361 bridge_.reset(bridge);
362 bridge_->set_bubble_controller(self);
367 - (void)windowWillClose:(NSNotification*)notification {
368 if (presenter_.get())
369 presenter_->OnUIClosing();
371 [super windowWillClose:notification];
374 - (void)setPresenter:(WebsiteSettings*)presenter {
375 presenter_.reset(presenter);
378 // Create the subviews for the bubble for internal Chrome pages.
379 - (void)initializeContentsForInternalPage {
380 ui::ResourceBundle& rb = ui::ResourceBundle::GetSharedInstance();
382 NSPoint controlOrigin = NSMakePoint(
383 kInternalPageFramePadding,
384 kInternalPageFramePadding + info_bubble::kBubbleArrowHeight);
385 NSSize imageSize = NSMakeSize(kInternalPageImageSize,
386 kInternalPageImageSize);
387 NSImageView* imageView = [self addImageWithSize:imageSize
389 atPoint:controlOrigin];
390 [imageView setImage:rb.GetNativeImageNamed(IDR_PRODUCT_LOGO_26).ToNSImage()];
392 controlOrigin.x += NSWidth([imageView frame]) + kInternalPageImageSpacing;
393 base::string16 text = l10n_util::GetStringUTF16(IDS_PAGE_INFO_INTERNAL_PAGE);
394 NSTextField* textField = [self addText:text
395 withSize:[NSFont smallSystemFontSize]
398 atPoint:controlOrigin];
399 // Center the text vertically with the image.
400 NSRect textFrame = [textField frame];
401 textFrame.origin.y += (imageSize.height - NSHeight(textFrame)) / 2;
402 [textField setFrame:textFrame];
404 // Adjust the contentView to fit everything.
405 CGFloat maxY = std::max(NSMaxY([imageView frame]), NSMaxY(textFrame));
406 [contentView_ setFrame:NSMakeRect(
407 0, 0, [self defaultWindowWidth], maxY + kInternalPageFramePadding)];
409 [self sizeAndPositionWindow];
412 // Create the subviews for the website settings bubble.
413 - (void)initializeContents {
414 // Keeps track of the position that the next control should be drawn at.
415 NSPoint controlOrigin = NSMakePoint(
417 kFramePadding + info_bubble::kBubbleArrowHeight);
419 // Create a text field (empty for now) to show the site identity.
420 identityField_ = [self addText:base::string16()
421 withSize:[NSFont systemFontSize]
424 atPoint:controlOrigin];
426 NSHeight([identityField_ frame]) + kConnectionHeadlineSpacing;
428 // Create a text field to identity status (e.g. verified, not verified).
429 identityStatusField_ = [self addText:base::string16()
430 withSize:[NSFont smallSystemFontSize]
433 atPoint:controlOrigin];
435 // Create the tab view and its two tabs.
437 base::scoped_nsobject<WebsiteSettingsTabSegmentedCell> cell(
438 [[WebsiteSettingsTabSegmentedCell alloc] init]);
439 CGFloat tabstripHeight = [cell cellSize].height;
440 NSRect tabstripFrame = NSMakeRect(
441 0, 0, [self defaultWindowWidth], tabstripHeight);
442 segmentedControl_.reset(
443 [[NSSegmentedControl alloc] initWithFrame:tabstripFrame]);
444 [segmentedControl_ setCell:cell];
445 [segmentedControl_ setSegmentCount:WebsiteSettingsUI::NUM_TAB_IDS];
446 [segmentedControl_ setTarget:self];
447 [segmentedControl_ setAction:@selector(tabSelected:)];
448 [segmentedControl_ setAutoresizingMask:NSViewWidthSizable];
450 NSDictionary* textAttributes =
451 [WebsiteSettingsTabSegmentedCell textAttributes];
453 // Create the "Permissions" tab.
454 NSString* label = l10n_util::GetNSString(
455 IDS_WEBSITE_SETTINGS_TAB_LABEL_PERMISSIONS);
456 [segmentedControl_ setLabel:label
457 forSegment:WebsiteSettingsUI::TAB_ID_PERMISSIONS];
458 NSSize textSize = [label sizeWithAttributes:textAttributes];
459 CGFloat tabWidth = textSize.width + 2 * kTabLabelXPadding;
461 // Create the "Connection" tab.
462 label = l10n_util::GetNSString(IDS_WEBSITE_SETTINGS_TAB_LABEL_CONNECTION);
463 textSize = [label sizeWithAttributes:textAttributes];
464 [segmentedControl_ setLabel:label
465 forSegment:WebsiteSettingsUI::TAB_ID_CONNECTION];
467 DCHECK_EQ([segmentedControl_ segmentCount], WebsiteSettingsUI::NUM_TAB_IDS);
469 // Make both tabs the width of the widest. The first segment has some
470 // additional padding that is not part of the tab, which is used for drawing
471 // the background of the tab strip.
472 tabWidth = std::max(tabWidth,
473 textSize.width + 2 * kTabLabelXPadding);
474 [segmentedControl_ setWidth:tabWidth + kTabStripXPadding
475 forSegment:WebsiteSettingsUI::TAB_ID_PERMISSIONS];
476 [segmentedControl_ setWidth:tabWidth + kTabStripXPadding
477 forSegment:WebsiteSettingsUI::TAB_ID_CONNECTION];
479 [segmentedControl_ setFont:[textAttributes objectForKey:NSFontAttributeName]];
480 [contentView_ addSubview:segmentedControl_];
482 NSRect tabFrame = NSMakeRect(0, 0, [self defaultWindowWidth], 300);
483 tabView_.reset([[NSTabView alloc] initWithFrame:tabFrame]);
484 [tabView_ setTabViewType:NSNoTabsNoBorder];
485 [tabView_ setDrawsBackground:NO];
486 [tabView_ setControlSize:NSSmallControlSize];
487 [contentView_ addSubview:tabView_.get()];
489 permissionsTabContentView_ = [self addPermissionsTabToTabView:tabView_];
490 connectionTabContentView_ = [self addConnectionTabToTabView:tabView_];
491 [self setSelectedTab:WebsiteSettingsUI::TAB_ID_PERMISSIONS];
493 [self performLayout];
496 // Create the contents of the Permissions tab and add it to the given tab view.
497 // Returns a weak reference to the tab view item's view.
498 - (NSView*)addPermissionsTabToTabView:(NSTabView*)tabView {
499 base::scoped_nsobject<NSTabViewItem> item([[NSTabViewItem alloc] init]);
500 [tabView_ insertTabViewItem:item.get()
501 atIndex:WebsiteSettingsUI::TAB_ID_PERMISSIONS];
502 base::scoped_nsobject<NSView> contentView(
503 [[FlippedView alloc] initWithFrame:[tabView_ contentRect]]);
504 [contentView setAutoresizingMask:NSViewWidthSizable];
505 [item setView:contentView.get()];
507 // Initialize the two containers that hold the controls. The initial frames
508 // are arbitrary, and will be adjusted after the controls are laid out.
509 cookiesView_ = [[[FlippedView alloc]
510 initWithFrame:[tabView_ contentRect]] autorelease];
511 [cookiesView_ setAutoresizingMask:NSViewWidthSizable];
513 permissionsView_ = [[[FlippedView alloc]
514 initWithFrame:[tabView_ contentRect]] autorelease];
516 [contentView addSubview:cookiesView_];
517 [contentView addSubview:permissionsView_];
519 // Create the link button to view cookies and site data. Its position will be
520 // set in performLayout.
521 NSString* cookieButtonText = l10n_util::GetNSString(
522 IDS_WEBSITE_SETTINGS_SHOW_SITE_DATA);
523 cookiesButton_ = [self addLinkButtonWithText:cookieButtonText
525 [cookiesButton_ setTarget:self];
526 [cookiesButton_ setAction:@selector(showCookiesAndSiteData:)];
528 // Create the link button to view site settings. Its position will be set in
530 NSString* siteSettingsButtonText =
531 l10n_util::GetNSString(IDS_PAGE_INFO_SITE_SETTINGS_LINK);
532 siteSettingsButton_ =
533 [self addLinkButtonWithText:siteSettingsButtonText toView:contentView];
534 [siteSettingsButton_ setTarget:self];
535 [siteSettingsButton_ setAction:@selector(showSiteSettingsData:)];
537 return contentView.get();
540 // Handler for the link button below the list of cookies.
541 - (void)showCookiesAndSiteData:(id)sender {
542 DCHECK(webContents_);
544 presenter_->RecordWebsiteSettingsAction(
545 WebsiteSettings::WEBSITE_SETTINGS_COOKIES_DIALOG_OPENED);
546 TabDialogs::FromWebContents(webContents_)->ShowCollectedCookies();
549 // Handler for the site settings button below the list of permissions.
550 - (void)showSiteSettingsData:(id)sender {
551 DCHECK(webContents_);
553 presenter_->RecordWebsiteSettingsAction(
554 WebsiteSettings::WEBSITE_SETTINGS_SITE_SETTINGS_OPENED);
555 webContents_->OpenURL(content::OpenURLParams(
556 GURL(chrome::kChromeUIContentSettingsURL), content::Referrer(),
557 NEW_FOREGROUND_TAB, ui::PAGE_TRANSITION_LINK, false));
560 // Handler for the link button to show certificate information.
561 - (void)showCertificateInfo:(id)sender {
562 DCHECK(certificateId_);
563 presenter_->RecordWebsiteSettingsAction(
564 WebsiteSettings::WEBSITE_SETTINGS_CERTIFICATE_DIALOG_OPENED);
565 ShowCertificateViewerByID(webContents_, [self parentWindow], certificateId_);
568 // Handler for the link button to revoke user certificate decisions.
569 - (void)resetCertificateDecisions:(id)sender {
570 DCHECK(resetDecisionsButton_);
571 presenter_->OnRevokeSSLErrorBypassButtonPressed();
575 // Handler for the link to show help information about the connection tab.
576 - (void)showHelpPage:(id)sender {
577 presenter_->RecordWebsiteSettingsAction(
578 WebsiteSettings::WEBSITE_SETTINGS_CONNECTION_HELP_OPENED);
579 webContents_->OpenURL(content::OpenURLParams(
580 GURL(chrome::kPageInfoHelpCenterURL), content::Referrer(),
581 NEW_FOREGROUND_TAB, ui::PAGE_TRANSITION_LINK, false));
584 // Create the contents of the Connection tab and add it to the given tab view.
585 // Returns a weak reference to the tab view item's view.
586 - (NSView*)addConnectionTabToTabView:(NSTabView*)tabView {
587 base::scoped_nsobject<NSTabViewItem> item([[NSTabViewItem alloc] init]);
588 base::scoped_nsobject<NSView> contentView(
589 [[FlippedView alloc] initWithFrame:[tabView_ contentRect]]);
590 [contentView setAutoresizingMask:NSViewWidthSizable];
592 // Place all the text and images at the same position. The positions will be
593 // adjusted in performLayout.
594 NSPoint textPosition = NSMakePoint(
595 kFramePadding + kConnectionImageSize + kConnectionImageSpacing,
597 NSPoint imagePosition = NSMakePoint(kFramePadding, kFramePadding);
598 NSSize imageSize = NSMakeSize(kConnectionImageSize, kConnectionImageSize);
600 identityStatusIcon_ = [self addImageWithSize:imageSize
602 atPoint:imagePosition];
603 identityStatusDescriptionField_ =
604 [self addText:base::string16()
605 withSize:[NSFont smallSystemFontSize]
607 toView:contentView.get()
608 atPoint:textPosition];
610 separatorAfterIdentity_ = [self addSeparatorToView:contentView];
611 [separatorAfterIdentity_ setAutoresizingMask:NSViewWidthSizable];
613 connectionStatusIcon_ = [self addImageWithSize:imageSize
615 atPoint:imagePosition];
616 connectionStatusDescriptionField_ =
617 [self addText:base::string16()
618 withSize:[NSFont smallSystemFontSize]
620 toView:contentView.get()
621 atPoint:textPosition];
622 certificateInfoButton_ = nil; // This will be created only if necessary.
623 resetDecisionsButton_ = nil; // This will be created only if necessary.
624 separatorAfterConnection_ = [self addSeparatorToView:contentView];
625 [separatorAfterConnection_ setAutoresizingMask:NSViewWidthSizable];
627 NSString* helpButtonText = l10n_util::GetNSString(
628 IDS_PAGE_INFO_HELP_CENTER_LINK);
629 helpButton_ = [self addLinkButtonWithText:helpButtonText
631 [helpButton_ setTarget:self];
632 [helpButton_ setAction:@selector(showHelpPage:)];
634 [item setView:contentView.get()];
635 [tabView_ insertTabViewItem:item.get()
636 atIndex:WebsiteSettingsUI::TAB_ID_CONNECTION];
638 return contentView.get();
641 // Set the Y position of |view| to the given position, and return the position
642 // of its bottom edge.
643 - (CGFloat)setYPositionOfView:(NSView*)view to:(CGFloat)position {
644 NSRect frame = [view frame];
645 frame.origin.y = position;
646 [view setFrame:frame];
647 return position + NSHeight(frame);
650 - (void)setWidthOfView:(NSView*)view to:(CGFloat)width {
651 [view setFrameSize:NSMakeSize(width, NSHeight([view frame]))];
654 // Layout all of the controls in the window. This should be called whenever
655 // the content has changed.
656 - (void)performLayout {
657 // Make the content at least as wide as the permissions view.
658 CGFloat contentWidth = std::max([self defaultWindowWidth],
659 NSWidth([permissionsView_ frame]));
661 // Set the width of the content view now, so that all the text fields will
662 // be sized to fit before their heights and vertical positions are adjusted.
663 // The tab view will only resize the currently selected tab, so resize both
664 // tab content views manually.
665 [self setWidthOfView:contentView_ to:contentWidth];
666 [self setWidthOfView:permissionsTabContentView_ to:contentWidth];
667 [self setWidthOfView:connectionTabContentView_ to:contentWidth];
669 // Place the identity status immediately below the identity.
670 [self sizeTextFieldHeightToFit:identityField_];
671 [self sizeTextFieldHeightToFit:identityStatusField_];
672 CGFloat yPos = NSMaxY([identityField_ frame]) + kConnectionHeadlineSpacing;
673 yPos = [self setYPositionOfView:identityStatusField_ to:yPos];
675 // Lay out the Permissions tab.
677 yPos = [self setYPositionOfView:cookiesView_ to:kFramePadding];
679 // Put the link button for cookies and site data just below the cookie info.
680 [cookiesButton_ setFrameOrigin:NSMakePoint(kFramePadding, yPos)];
682 // Put the permission info just below the link button.
684 [self setYPositionOfView:permissionsView_
685 to:NSMaxY([cookiesButton_ frame]) + kFramePadding];
687 // Put the link button for site settings just below the permissions.
688 [siteSettingsButton_ setFrameOrigin:NSMakePoint(kFramePadding, yPos)];
690 // Lay out the Connection tab.
692 // Lay out the identity status section.
693 [self sizeTextFieldHeightToFit:identityStatusDescriptionField_];
694 yPos = std::max(NSMaxY([identityStatusDescriptionField_ frame]),
695 NSMaxY([identityStatusIcon_ frame]));
696 if (certificateInfoButton_) {
697 NSRect certificateButtonFrame = [certificateInfoButton_ frame];
698 certificateButtonFrame.origin.x = NSMinX(
699 [identityStatusDescriptionField_ frame]);
700 certificateButtonFrame.origin.y = yPos + kVerticalSpacing;
701 [certificateInfoButton_ setFrame:certificateButtonFrame];
702 yPos = NSMaxY(certificateButtonFrame);
704 if (resetDecisionsButton_) {
705 NSRect resetDecisionsButtonFrame = [resetDecisionsButton_ frame];
706 resetDecisionsButtonFrame.origin.x =
707 NSMinX([identityStatusDescriptionField_ frame]);
708 resetDecisionsButtonFrame.origin.y = yPos + kVerticalSpacing;
709 [resetDecisionsButton_ setFrame:resetDecisionsButtonFrame];
710 yPos = NSMaxY(resetDecisionsButtonFrame);
712 yPos = [self setYPositionOfView:separatorAfterIdentity_
713 to:yPos + kVerticalSpacing];
714 yPos += kVerticalSpacing;
716 // Lay out the connection status section.
717 [self sizeTextFieldHeightToFit:connectionStatusDescriptionField_];
718 [self setYPositionOfView:connectionStatusIcon_ to:yPos];
719 [self setYPositionOfView:connectionStatusDescriptionField_ to:yPos];
720 yPos = std::max(NSMaxY([connectionStatusDescriptionField_ frame]),
721 NSMaxY([connectionStatusIcon_ frame]));
722 yPos = [self setYPositionOfView:separatorAfterConnection_
723 to:yPos + kVerticalSpacing];
724 yPos += kVerticalSpacing;
726 [self setYPositionOfView:helpButton_ to:yPos];
728 // Adjust the tab view size and place it below the identity status.
730 yPos = NSMaxY([identityStatusField_ frame]) + kTabStripTopSpacing;
731 yPos = [self setYPositionOfView:segmentedControl_ to:yPos];
733 CGFloat connectionTabHeight = NSMaxY([helpButton_ frame]) + kVerticalSpacing;
735 NSRect tabViewFrame = [tabView_ frame];
736 tabViewFrame.origin.y = yPos;
737 tabViewFrame.size.height = std::max(
738 connectionTabHeight, NSMaxY([siteSettingsButton_ frame]) + kFramePadding);
739 tabViewFrame.size.width = contentWidth;
740 [tabView_ setFrame:tabViewFrame];
742 // Adjust the contentView to fit everything.
743 [contentView_ setFrame:NSMakeRect(
744 0, 0, NSWidth(tabViewFrame), NSMaxY(tabViewFrame))];
746 [self sizeAndPositionWindow];
749 // Adjust the size of the window to match the size of the content, and position
750 // the bubble anchor appropriately.
751 - (void)sizeAndPositionWindow {
752 NSRect windowFrame = [contentView_ frame];
753 windowFrame.size = [[[self window] contentView] convertSize:windowFrame.size
755 // Adjust the origin by the difference in height.
756 windowFrame.origin = [[self window] frame].origin;
757 windowFrame.origin.y -= NSHeight(windowFrame) -
758 NSHeight([[self window] frame]);
760 // Resize the window. Only animate if the window is visible, otherwise it
761 // could be "growing" while it's opening, looking awkward.
762 [[self window] setFrame:windowFrame
764 animate:[[self window] isVisible]];
766 // Adjust the anchor for the bubble.
767 NSPoint anchorPoint =
768 [self anchorPointForWindowWithHeight:NSHeight(windowFrame)
769 parentWindow:[self parentWindow]];
770 [self setAnchorPoint:anchorPoint];
773 // Takes in the bubble's height and the parent window, which should be a
774 // BrowserWindow, and gets the proper anchor point for the bubble. The returned
775 // point is in screen coordinates.
776 - (NSPoint)anchorPointForWindowWithHeight:(CGFloat)bubbleHeight
777 parentWindow:(NSWindow*)parent {
778 BrowserWindowController* controller = [parent windowController];
779 NSPoint origin = NSZeroPoint;
780 if ([controller isKindOfClass:[BrowserWindowController class]]) {
781 LocationBarViewMac* locationBar = [controller locationBarBridge];
783 NSPoint bubblePoint = locationBar->GetPageInfoBubblePoint();
784 origin = [parent convertBaseToScreen:bubblePoint];
790 // Sets properties on the given |field| to act as the title or description
791 // labels in the bubble.
792 - (void)configureTextFieldAsLabel:(NSTextField*)textField {
793 [textField setEditable:NO];
794 [textField setSelectable:YES];
795 [textField setDrawsBackground:NO];
796 [textField setBezeled:NO];
799 // Adjust the height of the given text field to match its text.
800 - (void)sizeTextFieldHeightToFit:(NSTextField*)textField {
801 NSRect frame = [textField frame];
803 [GTMUILocalizerAndLayoutTweaker sizeToFitFixedWidthTextField:
805 [textField setFrame:frame];
808 // Create a new text field and add it to the given array of subviews.
809 // The array will retain a reference to the object.
810 - (NSTextField*)addText:(const base::string16&)text
811 withSize:(CGFloat)fontSize
814 atPoint:(NSPoint)point {
815 // Size the text to take up the full available width, with some padding.
816 // The height is arbitrary as it will be adjusted later.
817 CGFloat width = NSWidth([view frame]) - point.x - kFramePadding;
818 NSRect frame = NSMakeRect(point.x, point.y, width, 100);
819 base::scoped_nsobject<NSTextField> textField(
820 [[NSTextField alloc] initWithFrame:frame]);
821 [self configureTextFieldAsLabel:textField.get()];
822 [textField setStringValue:base::SysUTF16ToNSString(text)];
823 NSFont* font = bold ? [NSFont boldSystemFontOfSize:fontSize]
824 : [NSFont systemFontOfSize:fontSize];
825 [textField setFont:font];
826 [self sizeTextFieldHeightToFit:textField];
827 [textField setAutoresizingMask:NSViewWidthSizable];
828 [view addSubview:textField.get()];
829 return textField.get();
832 // Add an image as a subview of the given view, placed at a pre-determined x
833 // position and the given y position. Return the new NSImageView.
834 - (NSImageView*)addImageWithSize:(NSSize)size
836 atPoint:(NSPoint)point {
837 NSRect frame = NSMakeRect(point.x, point.y, size.width, size.height);
838 base::scoped_nsobject<NSImageView> imageView(
839 [[NSImageView alloc] initWithFrame:frame]);
840 [imageView setImageFrameStyle:NSImageFrameNone];
841 [view addSubview:imageView.get()];
842 return imageView.get();
845 // Add a separator as a subview of the given view. Return the new view.
846 - (NSView*)addSeparatorToView:(NSView*)view {
847 // Take up almost the full width of the container's frame.
848 CGFloat width = NSWidth([view frame]) - 2 * kFramePadding;
850 // Use an arbitrary position; it will be adjusted in performLayout.
851 NSBox* spacer = [self horizontalSeparatorWithFrame:NSMakeRect(
852 kFramePadding, 0, width, 0)];
853 [view addSubview:spacer];
857 // Add a link button with the given text to |view|.
858 - (NSButton*)addLinkButtonWithText:(NSString*)text toView:(NSView*)view {
859 // Frame size is arbitrary; it will be adjusted by the layout tweaker.
860 NSRect frame = NSMakeRect(kFramePadding, 0, 100, 10);
861 base::scoped_nsobject<NSButton> button(
862 [[NSButton alloc] initWithFrame:frame]);
863 base::scoped_nsobject<HyperlinkButtonCell> cell(
864 [[HyperlinkButtonCell alloc] initTextCell:text]);
865 [cell setControlSize:NSSmallControlSize];
866 [button setCell:cell.get()];
867 [button setButtonType:NSMomentaryPushInButton];
868 [button setBezelStyle:NSRegularSquareBezelStyle];
869 [view addSubview:button.get()];
871 [GTMUILocalizerAndLayoutTweaker sizeToFitView:button.get()];
875 // Add a button with the given text to |view| setting the max size appropriately
876 // for the connection info section.
877 - (NSButton*)addButtonWithTextToConnectionSection:(NSString*)text
878 toView:(NSView*)view {
879 NSRect containerFrame = [view frame];
880 // Frame size is arbitrary; it will be adjusted by the layout tweaker.
881 NSRect frame = NSMakeRect(kFramePadding, 0, 100, 10);
882 base::scoped_nsobject<NSButton> button(
883 [[NSButton alloc] initWithFrame:frame]);
885 // Determine the largest possible size for this button. The size is the width
886 // of the connection section minus the padding on both sides minus the
887 // connection image size and spacing.
888 CGFloat maxTitleWidth = containerFrame.size.width - kFramePadding * 2 -
889 kConnectionImageSize - kConnectionImageSpacing;
891 base::scoped_nsobject<NSButtonCell> cell(
892 [[NSButtonCell alloc] initTextCell:text]);
893 [button setCell:cell.get()];
894 [GTMUILocalizerAndLayoutTweaker sizeToFitView:button.get()];
896 // Ensure the containing view is large enough to contain the button with its
897 // widest possible title.
898 NSRect buttonFrame = [button frame];
899 buttonFrame.size.width = maxTitleWidth;
901 [button setFrame:buttonFrame];
902 [button setButtonType:NSMomentaryPushInButton];
903 [button setBezelStyle:NSRegularSquareBezelStyle];
904 [view addSubview:button.get()];
909 // Add a pop-up button for |permissionInfo| to the given view.
910 - (NSPopUpButton*)addPopUpButtonForPermission:
911 (const WebsiteSettingsUI::PermissionInfo&)permissionInfo
913 atPoint:(NSPoint)point {
915 GURL url = webContents_ ? webContents_->GetURL() : GURL();
916 __block WebsiteSettingsBubbleController* weakSelf = self;
917 PermissionMenuModel::ChangeCallback callback =
918 base::BindBlock(^(const WebsiteSettingsUI::PermissionInfo& permission) {
919 [weakSelf onPermissionChanged:permission.type to:permission.setting];
921 base::scoped_nsobject<PermissionSelectorButton> button(
922 [[PermissionSelectorButton alloc] initWithPermissionInfo:permissionInfo
924 withCallback:callback]);
925 // Determine the largest possible size for this button.
926 CGFloat maxTitleWidth = [button
927 maxTitleWidthForContentSettingsType:permissionInfo.type
928 withDefaultSetting:permissionInfo.default_setting];
930 // Ensure the containing view is large enough to contain the button with its
931 // widest possible title.
932 NSRect containerFrame = [view frame];
933 containerFrame.size.width = std::max(
934 NSWidth(containerFrame), point.x + maxTitleWidth + kFramePadding);
935 [view setFrame:containerFrame];
936 [view addSubview:button.get()];
940 // Called when the user changes the setting of a permission.
941 - (void)onPermissionChanged:(ContentSettingsType)permissionType
942 to:(ContentSetting)newSetting {
944 presenter_->OnSitePermissionChanged(permissionType, newSetting);
947 // Called when the user changes the selected segment in the segmented control.
948 - (void)tabSelected:(id)sender {
949 NSInteger index = [segmentedControl_ selectedSegment];
951 case WebsiteSettingsUI::TAB_ID_PERMISSIONS:
952 presenter_->RecordWebsiteSettingsAction(
953 WebsiteSettings::WEBSITE_SETTINGS_PERMISSIONS_TAB_SELECTED);
955 case WebsiteSettingsUI::TAB_ID_CONNECTION:
956 presenter_->RecordWebsiteSettingsAction(
957 WebsiteSettings::WEBSITE_SETTINGS_CONNECTION_TAB_SELECTED);
962 [tabView_ selectTabViewItemAtIndex:index];
965 // Adds a new row to the UI listing the permissions. Returns the amount of
966 // vertical space that was taken up by the row.
967 - (NSPoint)addPermission:
968 (const WebsiteSettingsUI::PermissionInfo&)permissionInfo
970 atPoint:(NSPoint)point {
971 base::scoped_nsobject<NSImage> image(
972 [WebsiteSettingsUI::GetPermissionIcon(permissionInfo).ToNSImage()
974 NSImageView* imageView = [self addImageWithSize:[image size]
977 [imageView setImage:image];
978 point.x += kPermissionImageSize + kPermissionImageSpacing;
980 base::string16 labelText =
981 WebsiteSettingsUI::PermissionTypeToUIString(permissionInfo.type) +
982 base::ASCIIToUTF16(":");
984 NSTextField* label = [self addText:labelText
985 withSize:[NSFont smallSystemFontSize]
990 NSPoint popUpPosition = NSMakePoint(NSMaxX([label frame]), point.y);
991 NSPopUpButton* button = [self addPopUpButtonForPermission:permissionInfo
993 atPoint:popUpPosition];
995 // Adjust the vertical position of the button so that its title text is
996 // aligned with the label. Assumes that the text is the same size in both.
997 // Also adjust the horizontal position to remove excess space due to the
999 NSRect titleRect = [[button cell] titleRectForBounds:[button bounds]];
1000 popUpPosition.x -= titleRect.origin.x - kPermissionPopUpXSpacing;
1001 popUpPosition.y -= titleRect.origin.y;
1002 [button setFrameOrigin:popUpPosition];
1004 // Align the icon with the text.
1005 [self alignPermissionIcon:imageView withTextField:label];
1007 // Permissions specified by policy or an extension cannot be changed.
1008 if (permissionInfo.source == content_settings::SETTING_SOURCE_EXTENSION ||
1009 permissionInfo.source == content_settings::SETTING_SOURCE_POLICY) {
1010 [button setEnabled:NO];
1013 NSRect buttonFrame = [button frame];
1014 return NSMakePoint(NSMaxX(buttonFrame), NSMaxY(buttonFrame));
1017 // Align an image with a text field by vertically centering the image on
1018 // the cap height of the first line of text.
1019 - (void)alignPermissionIcon:(NSImageView*)imageView
1020 withTextField:(NSTextField*)textField {
1021 NSFont* font = [textField font];
1023 // Calculate the offset from the top of the text field.
1024 CGFloat capHeight = [font capHeight];
1025 CGFloat offset = (kPermissionImageSize - capHeight) / 2 -
1026 ([font ascender] - capHeight) - kPermissionImageYAdjust;
1028 NSRect frame = [imageView frame];
1029 frame.origin.y -= offset;
1030 [imageView setFrame:frame];
1033 - (CGFloat)addCookieInfo:
1034 (const WebsiteSettingsUI::CookieInfo&)cookieInfo
1035 toView:(NSView*)view
1036 atPoint:(NSPoint)point {
1037 WebsiteSettingsUI::PermissionInfo info;
1038 info.type = CONTENT_SETTINGS_TYPE_COOKIES;
1039 info.setting = CONTENT_SETTING_ALLOW;
1040 NSImage* image = WebsiteSettingsUI::GetPermissionIcon(info).ToNSImage();
1041 NSImageView* imageView = [self addImageWithSize:[image size]
1044 [imageView setImage:image];
1045 point.x += kPermissionImageSize + kPermissionImageSpacing;
1047 base::string16 labelText = l10n_util::GetStringFUTF16(
1048 IDS_WEBSITE_SETTINGS_SITE_DATA_STATS_LINE,
1049 base::UTF8ToUTF16(cookieInfo.cookie_source),
1050 base::IntToString16(cookieInfo.allowed),
1051 base::IntToString16(cookieInfo.blocked));
1053 NSTextField* label = [self addText:labelText
1054 withSize:[NSFont smallSystemFontSize]
1059 // Align the icon with the text.
1060 [self alignPermissionIcon:imageView withTextField:label];
1062 return NSHeight([label frame]);
1065 // Set the content of the identity and identity status fields.
1066 - (void)setIdentityInfo:(const WebsiteSettingsUI::IdentityInfo&)identityInfo {
1067 [identityField_ setStringValue:
1068 base::SysUTF8ToNSString(identityInfo.site_identity)];
1069 [identityStatusField_ setStringValue:
1070 base::SysUTF16ToNSString(identityInfo.GetIdentityStatusText())];
1072 WebsiteSettings::SiteIdentityStatus status = identityInfo.identity_status;
1073 if (status == WebsiteSettings::SITE_IDENTITY_STATUS_CERT ||
1074 status == WebsiteSettings::SITE_IDENTITY_STATUS_EV_CERT) {
1075 [identityStatusField_ setTextColor:IdentityVerifiedTextColor()];
1077 // If there is a certificate, add a button for viewing the certificate info.
1078 certificateId_ = identityInfo.cert_id;
1079 if (certificateId_) {
1080 if (!certificateInfoButton_) {
1081 NSString* text = l10n_util::GetNSString(IDS_PAGEINFO_CERT_INFO_BUTTON);
1082 certificateInfoButton_ = [self addLinkButtonWithText:text
1083 toView:connectionTabContentView_];
1085 [certificateInfoButton_ setTarget:self];
1086 [certificateInfoButton_ setAction:@selector(showCertificateInfo:)];
1089 // Check if a security decision has been made, and if so, add a button to
1090 // allow the user to retract their decision.
1091 if (identityInfo.show_ssl_decision_revoke_button) {
1092 NSString* text = l10n_util::GetNSString(
1093 IDS_PAGEINFO_RESET_INVALID_CERTIFICATE_DECISIONS_BUTTON);
1094 resetDecisionsButton_ =
1095 [self addButtonWithTextToConnectionSection:text
1096 toView:connectionTabContentView_];
1097 [resetDecisionsButton_ setTarget:self];
1098 [resetDecisionsButton_ setAction:@selector(resetCertificateDecisions:)];
1101 certificateInfoButton_ = nil;
1104 [identityStatusIcon_ setImage:WebsiteSettingsUI::GetIdentityIcon(
1105 identityInfo.identity_status).ToNSImage()];
1106 [identityStatusDescriptionField_ setStringValue:
1107 base::SysUTF8ToNSString(identityInfo.identity_status_description)];
1109 [connectionStatusIcon_ setImage:WebsiteSettingsUI::GetConnectionIcon(
1110 identityInfo.connection_status).ToNSImage()];
1111 [connectionStatusDescriptionField_ setStringValue:
1112 base::SysUTF8ToNSString(identityInfo.connection_status_description)];
1114 [self performLayout];
1117 - (void)setCookieInfo:(const CookieInfoList&)cookieInfoList {
1118 // A result of re-ordering of the permissions (crbug.com/444244) is
1119 // that sometimes permissions may not be displayed at all, so it's
1120 // incorrect to check they are set before the cookie info.
1122 [cookiesView_ setSubviews:[NSArray array]];
1123 NSPoint controlOrigin = NSMakePoint(kFramePadding, 0);
1125 base::string16 sectionTitle = l10n_util::GetStringUTF16(
1126 IDS_WEBSITE_SETTINGS_TITLE_SITE_DATA);
1127 NSTextField* header = [self addText:sectionTitle
1128 withSize:[NSFont smallSystemFontSize]
1131 atPoint:controlOrigin];
1132 controlOrigin.y += NSHeight([header frame]) + kPermissionsHeadlineSpacing;
1134 for (CookieInfoList::const_iterator it = cookieInfoList.begin();
1135 it != cookieInfoList.end();
1137 controlOrigin.y += kPermissionsTabSpacing;
1138 CGFloat rowHeight = [self addCookieInfo:*it
1140 atPoint:controlOrigin];
1141 controlOrigin.y += rowHeight;
1144 controlOrigin.y += kPermissionsTabSpacing;
1145 [cookiesView_ setFrameSize:
1146 NSMakeSize(NSWidth([cookiesView_ frame]), controlOrigin.y)];
1148 [self performLayout];
1151 - (void)setPermissionInfo:(const PermissionInfoList&)permissionInfoList {
1152 [permissionsView_ setSubviews:[NSArray array]];
1153 NSPoint controlOrigin = NSMakePoint(kFramePadding, 0);
1155 if (permissionInfoList.size() > 0) {
1156 base::string16 sectionTitle = l10n_util::GetStringUTF16(
1157 IDS_WEBSITE_SETTINGS_TITLE_SITE_PERMISSIONS);
1158 NSTextField* header = [self addText:sectionTitle
1159 withSize:[NSFont smallSystemFontSize]
1161 toView:permissionsView_
1162 atPoint:controlOrigin];
1163 [self sizeTextFieldHeightToFit:header];
1164 controlOrigin.y += NSHeight([header frame]) + kPermissionsHeadlineSpacing;
1166 for (PermissionInfoList::const_iterator permission =
1167 permissionInfoList.begin();
1168 permission != permissionInfoList.end();
1170 controlOrigin.y += kPermissionsTabSpacing;
1171 NSPoint rowBottomRight = [self addPermission:*permission
1172 toView:permissionsView_
1173 atPoint:controlOrigin];
1174 controlOrigin.y = rowBottomRight.y;
1176 controlOrigin.y += kFramePadding;
1179 [permissionsView_ setFrameSize:
1180 NSMakeSize(NSWidth([permissionsView_ frame]), controlOrigin.y)];
1181 [self performLayout];
1184 - (void)setSelectedTab:(WebsiteSettingsUI::TabId)tabId {
1185 NSInteger index = static_cast<NSInteger>(tabId);
1186 [segmentedControl_ setSelectedSegment:index];
1187 [tabView_ selectTabViewItemAtIndex:index];
1192 WebsiteSettingsUIBridge::WebsiteSettingsUIBridge()
1193 : bubble_controller_(nil) {
1196 WebsiteSettingsUIBridge::~WebsiteSettingsUIBridge() {
1199 void WebsiteSettingsUIBridge::set_bubble_controller(
1200 WebsiteSettingsBubbleController* controller) {
1201 bubble_controller_ = controller;
1204 void WebsiteSettingsUIBridge::Show(gfx::NativeWindow parent,
1206 content::WebContents* web_contents,
1208 const content::SSLStatus& ssl) {
1209 bool is_internal_page = InternalChromePage(url);
1211 // Create the bridge. This will be owned by the bubble controller.
1212 WebsiteSettingsUIBridge* bridge = new WebsiteSettingsUIBridge();
1214 // Create the bubble controller. It will dealloc itself when it closes.
1215 WebsiteSettingsBubbleController* bubble_controller =
1216 [[WebsiteSettingsBubbleController alloc]
1217 initWithParentWindow:parent
1218 websiteSettingsUIBridge:bridge
1219 webContents:web_contents
1220 isInternalPage:is_internal_page];
1222 if (!is_internal_page) {
1223 // Initialize the presenter, which holds the model and controls the UI.
1224 // This is also owned by the bubble controller.
1225 WebsiteSettings* presenter = new WebsiteSettings(
1228 TabSpecificContentSettings::FromWebContents(web_contents),
1229 InfoBarService::FromWebContents(web_contents),
1232 content::CertStore::GetInstance());
1233 [bubble_controller setPresenter:presenter];
1236 [bubble_controller showWindow:nil];
1239 void WebsiteSettingsUIBridge::SetIdentityInfo(
1240 const WebsiteSettingsUI::IdentityInfo& identity_info) {
1241 [bubble_controller_ setIdentityInfo:identity_info];
1244 void WebsiteSettingsUIBridge::SetCookieInfo(
1245 const CookieInfoList& cookie_info_list) {
1246 [bubble_controller_ setCookieInfo:cookie_info_list];
1249 void WebsiteSettingsUIBridge::SetPermissionInfo(
1250 const PermissionInfoList& permission_info_list) {
1251 [bubble_controller_ setPermissionInfo:permission_info_list];
1254 void WebsiteSettingsUIBridge::SetSelectedTab(TabId tab_id) {
1255 [bubble_controller_ setSelectedTab:tab_id];