diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-17 04:09:06 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-17 04:09:06 +0000 |
commit | df0ca6c858762b101bf424ff6c0522409fa195fc (patch) | |
tree | efa188eee6972e2c0de358f2d19a2348ce6dcb06 /net/base/ssl_config_service_mac.cc | |
parent | 73de26a684944782a92f8e6840e1b290c9a424cd (diff) | |
download | chromium_src-df0ca6c858762b101bf424ff6c0522409fa195fc.zip chromium_src-df0ca6c858762b101bf424ff6c0522409fa195fc.tar.gz chromium_src-df0ca6c858762b101bf424ff6c0522409fa195fc.tar.bz2 |
Move scoped_cftyperef from base to base/mac, use the new namespace, and name it
properly (scoped_cftyperef -> ScopedCFTypeRef).
TEST=it compiles
BUG=none
Review URL: http://codereview.chromium.org/3855001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62887 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base/ssl_config_service_mac.cc')
-rw-r--r-- | net/base/ssl_config_service_mac.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/base/ssl_config_service_mac.cc b/net/base/ssl_config_service_mac.cc index 82a3632..2ce1d5c 100644 --- a/net/base/ssl_config_service_mac.cc +++ b/net/base/ssl_config_service_mac.cc @@ -6,7 +6,7 @@ #include <CoreFoundation/CoreFoundation.h> -#include "base/scoped_cftyperef.h" +#include "base/mac/scoped_cftyperef.h" using base::TimeDelta; using base::TimeTicks; @@ -36,7 +36,7 @@ bool RevocationStyleIsEnabled(CFStringRef key) { kRevocationPreferencesIdentifier, kCFPreferencesCurrentUser, kCFPreferencesAnyHost); if (plist_ref) { - scoped_cftyperef<CFPropertyListRef> scoped_plist_ref(plist_ref); + base::mac::ScopedCFTypeRef<CFPropertyListRef> scoped_plist_ref(plist_ref); if (CFGetTypeID(plist_ref) == CFStringGetTypeID()) { CFStringRef style = reinterpret_cast<CFStringRef>(plist_ref); if (CFStringCompare(kNoneRevocationValue, style, |