Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(551)

Unified Diff: chrome/browser/browsing_data/canonical_cookie_hash.cc

Issue 454623003: Store in memory cookies in a hash set instead of a list. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix total ordering. Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/browsing_data/canonical_cookie_hash.cc
diff --git a/chrome/browser/browsing_data/canonical_cookie_hash.cc b/chrome/browser/browsing_data/canonical_cookie_hash.cc
new file mode 100644
index 0000000000000000000000000000000000000000..218555eb2b8ece422912a16fa0f756728df0ecea
--- /dev/null
+++ b/chrome/browser/browsing_data/canonical_cookie_hash.cc
@@ -0,0 +1,18 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/browser/browsing_data/canonical_cookie_hash.h"
+
+#include "base/hash.h"
+
+namespace canonical_cookie {
+
+size_t FastHash(const net::CanonicalCookie& cookie) {
+ return base::SuperFastHash(cookie.Name().c_str(), cookie.Name().size()) +
+ 3 * base::SuperFastHash(cookie.Domain().c_str(),
+ cookie.Domain().size()) +
+ 7 * base::SuperFastHash(cookie.Path().c_str(), cookie.Path().size());
+}
+
+}; // namespace canonical_cookie

Powered by Google App Engine
This is Rietveld 408576698