diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-09-29 23:20:36 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-09-29 23:20:36 +0200 |
commit | 81b341a9b37acae2b60e0334a9b0846bc5be8445 (patch) | |
tree | b998e480ac1971ea93101510438ba1e87d9db82a /netwerk/cookie | |
parent | ddf29811b2d95bdf8385b9eb85519332b69344ca (diff) | |
download | UXP-81b341a9b37acae2b60e0334a9b0846bc5be8445.tar UXP-81b341a9b37acae2b60e0334a9b0846bc5be8445.tar.gz UXP-81b341a9b37acae2b60e0334a9b0846bc5be8445.tar.lz UXP-81b341a9b37acae2b60e0334a9b0846bc5be8445.tar.xz UXP-81b341a9b37acae2b60e0334a9b0846bc5be8445.zip |
Clean up a number of unused variables.
Tag #21.
Diffstat (limited to 'netwerk/cookie')
-rw-r--r-- | netwerk/cookie/nsCookieService.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/netwerk/cookie/nsCookieService.cpp b/netwerk/cookie/nsCookieService.cpp index ea54dbd61..7bc5abcd1 100644 --- a/netwerk/cookie/nsCookieService.cpp +++ b/netwerk/cookie/nsCookieService.cpp @@ -3311,13 +3311,6 @@ nsCookieService::SetCookieInternal(nsIURI *aHostURI, // so we can handle them separately. bool newCookie = ParseAttributes(aCookieHeader, cookieAttributes); - // Collect telemetry on how often secure cookies are set from non-secure - // origins, and vice-versa. - // - // 0 = nonsecure and "http:" - // 1 = nonsecure and "https:" - // 2 = secure and "http:" - // 3 = secure and "https:" bool isHTTPS; nsresult rv = aHostURI->SchemeIs("https", &isHTTPS); |