OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "testing/gtest/include/gtest/gtest.h" | 5 #include "testing/gtest/include/gtest/gtest.h" |
6 #include "base/ref_counted.h" | 6 #include "base/ref_counted.h" |
7 | 7 |
8 namespace { | 8 namespace { |
9 | 9 |
10 class SelfAssign : public base::RefCounted<SelfAssign> { | 10 class SelfAssign : public base::RefCounted<SelfAssign> { |
| 11 friend class base::RefCounted<SelfAssign>; |
| 12 |
| 13 ~SelfAssign() {} |
11 }; | 14 }; |
12 | 15 |
13 class CheckDerivedMemberAccess : public scoped_refptr<SelfAssign> { | 16 class CheckDerivedMemberAccess : public scoped_refptr<SelfAssign> { |
14 public: | 17 public: |
15 CheckDerivedMemberAccess() { | 18 CheckDerivedMemberAccess() { |
16 // This shouldn't compile if we don't have access to the member variable. | 19 // This shouldn't compile if we don't have access to the member variable. |
17 SelfAssign** pptr = &ptr_; | 20 SelfAssign** pptr = &ptr_; |
18 EXPECT_EQ(*pptr, ptr_); | 21 EXPECT_EQ(*pptr, ptr_); |
19 } | 22 } |
20 }; | 23 }; |
21 | 24 |
22 } // end namespace | 25 } // end namespace |
23 | 26 |
24 TEST(RefCountedUnitTest, TestSelfAssignment) { | 27 TEST(RefCountedUnitTest, TestSelfAssignment) { |
25 SelfAssign* p = new SelfAssign; | 28 SelfAssign* p = new SelfAssign; |
26 scoped_refptr<SelfAssign> var = p; | 29 scoped_refptr<SelfAssign> var = p; |
27 var = var; | 30 var = var; |
28 EXPECT_EQ(var.get(), p); | 31 EXPECT_EQ(var.get(), p); |
29 } | 32 } |
30 | 33 |
31 TEST(RefCountedUnitTest, ScopedRefPtrMemberAccess) { | 34 TEST(RefCountedUnitTest, ScopedRefPtrMemberAccess) { |
32 CheckDerivedMemberAccess check; | 35 CheckDerivedMemberAccess check; |
33 } | 36 } |
OLD | NEW |