Bug 989676: Remove redundant 'const' qualifier applied to already-'const' typedefs in nsCookieService.h. r=hurley

This commit is contained in:
Daniel Holbert 2014-04-01 18:18:36 -07:00
parent fae0536657
commit 10664c28e1

View File

@ -66,13 +66,13 @@ public:
, mInBrowserElement(inBrowser)
{}
nsCookieKey(const KeyTypePointer other)
nsCookieKey(KeyTypePointer other)
: mBaseDomain(other->mBaseDomain)
, mAppId(other->mAppId)
, mInBrowserElement(other->mInBrowserElement)
{}
nsCookieKey(const KeyType other)
nsCookieKey(KeyType other)
: mBaseDomain(other.mBaseDomain)
, mAppId(other.mAppId)
, mInBrowserElement(other.mInBrowserElement)