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

Unified Diff: net/base/cookie_store.h

Issue 6969075: MAC Cookies (patch 5 of N) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 7 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: net/base/cookie_store.h
===================================================================
--- net/base/cookie_store.h (revision 85309)
+++ net/base/cookie_store.h (working copy)
@@ -37,12 +37,12 @@
std::string name;
// TODO(abarth): Add value if any clients need it.
+ // The time at which the cookie was created.
+ base::Time creation_date;
+
// The value of the MAC-Key and MAC-Algorithm attributes, if present.
std::string mac_key;
std::string mac_algorithm;
-
- // The URL from which we received the cookie.
- std::string source;
};
// Sets a single cookie. Expects a cookie line, like "a=1; domain=b.com".

Powered by Google App Engine
This is Rietveld 408576698