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

Unified Diff: chrome/common/mac/objc_method_swizzle.h

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: Inlude in shiny new gn base_unittests target Created 6 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | chrome/common/mac/objc_method_swizzle.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/mac/objc_method_swizzle.h
diff --git a/chrome/common/mac/objc_method_swizzle.h b/chrome/common/mac/objc_method_swizzle.h
deleted file mode 100644
index f756fa3af88ba11453b7a6d909e32eafdbdaa09e..0000000000000000000000000000000000000000
--- a/chrome/common/mac/objc_method_swizzle.h
+++ /dev/null
@@ -1,27 +0,0 @@
-// Copyright (c) 2011 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.
-
-#ifndef CHROME_COMMON_MAC_OBJC_METHOD_SWIZZLE_H_
-#define CHROME_COMMON_MAC_OBJC_METHOD_SWIZZLE_H_
-
-#import <objc/runtime.h>
-
-// You should think twice every single time you use anything from this
-// namespace.
-namespace ObjcEvilDoers {
-
-// This is similar to class_getInstanceMethod(), except that it
-// returns NULL if |aClass| does not directly implement |aSelector|.
-Method GetImplementedInstanceMethod(Class aClass, SEL aSelector);
-
-// Exchanges the implementation of |originalSelector| and
-// |alternateSelector| within |aClass|. Both selectors must be
-// implemented directly by |aClass|, not inherited. The IMP returned
-// is for |originalSelector| (for purposes of forwarding).
-IMP SwizzleImplementedInstanceMethods(
- Class aClass, const SEL originalSelector, const SEL alternateSelector);
-
-} // namespace ObjcEvilDoers
-
-#endif // CHROME_COMMON_MAC_OBJC_METHOD_SWIZZLE_H_
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | chrome/common/mac/objc_method_swizzle.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698