diff options
author | tommi@chromium.org <tommi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-10 00:53:13 +0000 |
---|---|---|
committer | tommi@chromium.org <tommi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-10 00:53:13 +0000 |
commit | 935f776ef2e1f34371a2821b852ab2140acc6fb5 (patch) | |
tree | 23fe318afcb1fb5eec20a90d1d3a9490fc890ca6 /base/ref_counted.h | |
parent | a8154c77769759f7b3883df8dd36854466526515 (diff) | |
download | chromium_src-935f776ef2e1f34371a2821b852ab2140acc6fb5.zip chromium_src-935f776ef2e1f34371a2821b852ab2140acc6fb5.tar.gz chromium_src-935f776ef2e1f34371a2821b852ab2140acc6fb5.tar.bz2 |
Changing access to scoped_refptr member variables from private to protected.
This is required to be able to extend the functionality of the class where existing public functionality does not offer sufficient access.
Review URL: http://codereview.chromium.org/17464
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7851 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/ref_counted.h')
-rw-r--r-- | base/ref_counted.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/ref_counted.h b/base/ref_counted.h index a1e7bb4..2268808 100644 --- a/base/ref_counted.h +++ b/base/ref_counted.h @@ -222,7 +222,7 @@ class scoped_refptr { swap(&r.ptr_); } - private: + protected: T* ptr_; }; |