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

Side by Side Diff: base/test/scoped_class_swizzler_mac.mm

Issue 345243007: Add ScopedObjCClassSwizzler in base/mac, absorbs objc_method_swizzle and ScopedClassSwizzler (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase to master Created 6 years, 5 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
(Empty)
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.
4
5 #include "base/test/scoped_class_swizzler_mac.h"
6
7 namespace base {
8
9 ScopedClassSwizzler::ScopedClassSwizzler(Class target, Class source,
10 SEL selector) {
11 old_selector_impl_ = class_getInstanceMethod(target, selector);
12 new_selector_impl_ = class_getInstanceMethod(source, selector);
13 if (!old_selector_impl_ && !new_selector_impl_) {
14 // Try class methods.
15 old_selector_impl_ = class_getClassMethod(target, selector);
16 new_selector_impl_ = class_getClassMethod(source, selector);
17 }
18 method_exchangeImplementations(old_selector_impl_, new_selector_impl_);
19 }
20
21 ScopedClassSwizzler::~ScopedClassSwizzler() {
22 method_exchangeImplementations(old_selector_impl_, new_selector_impl_);
23 }
24
25 } // namespace base
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698