// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/browsing_data/content/canonical_cookie_hash.h" #include "base/hash/hash.h" #include "net/cookies/canonical_cookie.h" namespace canonical_cookie { size_t FastHash(const net::CanonicalCookie& cookie) { … } bool CanonicalCookieComparer::operator()( const net::CanonicalCookie& cookie1, const net::CanonicalCookie& cookie2) const { … } } // namespace canonical_cookie