Wed, 31 Dec 2014 07:22:50 +0100
Correct previous dual key logic pending first delivery installment.
michael@0 | 1 | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
michael@0 | 2 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 5 | |
michael@0 | 6 | #include "nsICookie.idl" |
michael@0 | 7 | |
michael@0 | 8 | /** |
michael@0 | 9 | * Main cookie object interface for use by consumers: |
michael@0 | 10 | * extends nsICookie, a frozen interface for external |
michael@0 | 11 | * access of cookie objects |
michael@0 | 12 | */ |
michael@0 | 13 | |
michael@4 | 14 | [scriptable, uuid(9468A7E6-37B3-43CE-A081-377BC12C5BB7)] |
michael@0 | 15 | |
michael@0 | 16 | interface nsICookie2 : nsICookie |
michael@0 | 17 | { |
michael@0 | 18 | |
michael@0 | 19 | /** |
michael@4 | 20 | * the origin key of the cookie. |
michael@4 | 21 | */ |
michael@4 | 22 | readonly attribute ACString origin; |
michael@4 | 23 | |
michael@4 | 24 | /** |
michael@0 | 25 | * the host (possibly fully qualified) of the cookie, |
michael@0 | 26 | * without a leading dot to represent if it is a |
michael@0 | 27 | * domain cookie. |
michael@0 | 28 | */ |
michael@0 | 29 | readonly attribute AUTF8String rawHost; |
michael@0 | 30 | |
michael@0 | 31 | /** |
michael@0 | 32 | * true if the cookie is a session cookie. |
michael@0 | 33 | * note that expiry time will also be honored |
michael@0 | 34 | * for session cookies (see below); thus, whichever is |
michael@0 | 35 | * the more restrictive of the two will take effect. |
michael@0 | 36 | */ |
michael@0 | 37 | readonly attribute boolean isSession; |
michael@0 | 38 | |
michael@0 | 39 | /** |
michael@0 | 40 | * the actual expiry time of the cookie, in seconds |
michael@0 | 41 | * since midnight (00:00:00), January 1, 1970 UTC. |
michael@0 | 42 | * |
michael@0 | 43 | * this is distinct from nsICookie::expires, which |
michael@0 | 44 | * has different and obsolete semantics. |
michael@0 | 45 | */ |
michael@0 | 46 | readonly attribute int64_t expiry; |
michael@0 | 47 | |
michael@0 | 48 | /** |
michael@0 | 49 | * true if the cookie is an http only cookie |
michael@0 | 50 | */ |
michael@0 | 51 | readonly attribute boolean isHttpOnly; |
michael@0 | 52 | |
michael@0 | 53 | /** |
michael@0 | 54 | * the creation time of the cookie, in microseconds |
michael@0 | 55 | * since midnight (00:00:00), January 1, 1970 UTC. |
michael@0 | 56 | */ |
michael@0 | 57 | readonly attribute int64_t creationTime; |
michael@0 | 58 | |
michael@0 | 59 | /** |
michael@0 | 60 | * the last time the cookie was accessed (i.e. created, |
michael@0 | 61 | * modified, or read by the server), in microseconds |
michael@0 | 62 | * since midnight (00:00:00), January 1, 1970 UTC. |
michael@0 | 63 | * |
michael@0 | 64 | * note that this time may be approximate. |
michael@0 | 65 | */ |
michael@0 | 66 | readonly attribute int64_t lastAccessed; |
michael@0 | 67 | |
michael@0 | 68 | }; |