diff options
author | erikchen@chromium.org <erikchen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-18 07:11:26 +0000 |
---|---|---|
committer | erikchen@chromium.org <erikchen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-18 07:11:26 +0000 |
commit | d4518edc78ece79bd5a47803d267dd2f74381894 (patch) | |
tree | d7c5dc2df5398e346d84c17776290d91bc72b51a /chrome/browser/ui/cocoa/custom_frame_view.mm | |
parent | f585284f029af4b7a7d55d1f96935c9563a65648 (diff) | |
download | chromium_src-d4518edc78ece79bd5a47803d267dd2f74381894.zip chromium_src-d4518edc78ece79bd5a47803d267dd2f74381894.tar.gz chromium_src-d4518edc78ece79bd5a47803d267dd2f74381894.tar.bz2 |
mac: [Yosemite] Remove unnecessary AppKit private method swizzling.
In Yosemite, the fullscreen button replaces the zoom button. We no longer need
to swizzle the method that returns the origin of the fullscreen button.
BUG=388772
Review URL: https://codereview.chromium.org/402753002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@284021 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/cocoa/custom_frame_view.mm')
-rw-r--r-- | chrome/browser/ui/cocoa/custom_frame_view.mm | 36 |
1 files changed, 20 insertions, 16 deletions
diff --git a/chrome/browser/ui/cocoa/custom_frame_view.mm b/chrome/browser/ui/cocoa/custom_frame_view.mm index 2db6103..3628c1a 100644 --- a/chrome/browser/ui/cocoa/custom_frame_view.mm +++ b/chrome/browser/ui/cocoa/custom_frame_view.mm @@ -89,22 +89,26 @@ BOOL gCanGetCornerRadius = NO; } } - // Swizzle the method that sets the origin for the Lion fullscreen button. Do - // nothing if it cannot be found. - m0 = class_getInstanceMethod([self class], - @selector(_fullScreenButtonOrigin)); - if (m0) { - BOOL didAdd = class_addMethod(borderViewClass, - @selector(_fullScreenButtonOriginOriginal), - method_getImplementation(m0), - method_getTypeEncoding(m0)); - if (didAdd) { - Method m1 = class_getInstanceMethod(borderViewClass, - @selector(_fullScreenButtonOrigin)); - Method m2 = class_getInstanceMethod(borderViewClass, - @selector(_fullScreenButtonOriginOriginal)); - if (m1 && m2) { - method_exchangeImplementations(m1, m2); + // In Yosemite, the fullscreen button replaces the zoom button. We no longer + // need to swizzle out this AppKit private method. + if (base::mac::IsOSMavericksOrEarlier()) { + // Swizzle the method that sets the origin for the Lion fullscreen button. + // Do nothing if it cannot be found. + m0 = class_getInstanceMethod([self class], + @selector(_fullScreenButtonOrigin)); + if (m0) { + BOOL didAdd = class_addMethod(borderViewClass, + @selector(_fullScreenButtonOriginOriginal), + method_getImplementation(m0), + method_getTypeEncoding(m0)); + if (didAdd) { + Method m1 = class_getInstanceMethod(borderViewClass, + @selector(_fullScreenButtonOrigin)); + Method m2 = class_getInstanceMethod( + borderViewClass, @selector(_fullScreenButtonOriginOriginal)); + if (m1 && m2) { + method_exchangeImplementations(m1, m2); + } } } } |