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

Unified Diff: chrome/common/mac/objc_method_swizzle_unittest.mm

Issue 17593006: mac: Update clients of scoped_nsobject.h. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: iwyu, scoped_nsprotocol Created 7 years, 6 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
Index: chrome/common/mac/objc_method_swizzle_unittest.mm
diff --git a/chrome/common/mac/objc_method_swizzle_unittest.mm b/chrome/common/mac/objc_method_swizzle_unittest.mm
index 261e24d09cf6881adeffc11047bd3a5f1d0ecb24..3053f3b711d88606e22bcfca143775e4e87a7833 100644
--- a/chrome/common/mac/objc_method_swizzle_unittest.mm
+++ b/chrome/common/mac/objc_method_swizzle_unittest.mm
@@ -4,7 +4,7 @@
#import "chrome/common/mac/objc_method_swizzle.h"
-#include "base/memory/scoped_nsobject.h"
+#include "base/mac/scoped_nsobject.h"
#include "testing/gtest/include/gtest/gtest.h"
@interface ObjcMethodSwizzleTest : NSObject
@@ -58,7 +58,7 @@ TEST(ObjcMethodSwizzleTest, GetImplementedInstanceMethod) {
}
TEST(ObjcMethodSwizzleTest, SwizzleImplementedInstanceMethods) {
- scoped_nsobject<ObjcMethodSwizzleTest> object(
+ base::scoped_nsobject<ObjcMethodSwizzleTest> object(
[[ObjcMethodSwizzleTest alloc] init]);
EXPECT_EQ([object one], 1);
EXPECT_EQ([object two], 2);

Powered by Google App Engine
This is Rietveld 408576698