Index: chrome/browser/ui/cocoa/page_info/website_settings_utils_cocoa.mm |
diff --git a/chrome/browser/ui/cocoa/page_info/website_settings_utils_cocoa.mm b/chrome/browser/ui/cocoa/page_info/website_settings_utils_cocoa.mm |
deleted file mode 100644 |
index f0c57c7e458b9b617fb4e8451e3d1aebbf649d71..0000000000000000000000000000000000000000 |
--- a/chrome/browser/ui/cocoa/page_info/website_settings_utils_cocoa.mm |
+++ /dev/null |
@@ -1,24 +0,0 @@ |
-// Copyright 2014 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#include "chrome/browser/ui/cocoa/page_info/website_settings_utils_cocoa.h" |
- |
-namespace { |
-// The amount of horizontal space between the button's title and its arrow icon. |
-const CGFloat kButtonTitleRightPadding = 4.0f; |
-} |
- |
-// Determine the size of a popup button with the given title. |
-NSSize SizeForWebsiteSettingsButtonTitle(NSPopUpButton* button, |
- NSString* title) { |
- NSDictionary* textAttributes = |
- [[button attributedTitle] attributesAtIndex:0 effectiveRange:NULL]; |
- NSSize titleSize = [title sizeWithAttributes:textAttributes]; |
- |
- NSRect frame = [button frame]; |
- NSRect titleRect = [[button cell] titleRectForBounds:frame]; |
- CGFloat width = titleSize.width + NSWidth(frame) - NSWidth(titleRect); |
- |
- return NSMakeSize(width + kButtonTitleRightPadding, NSHeight(frame)); |
-} |