Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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@0 | 14 | [scriptable, uuid(05c420e5-03d0-4c7b-a605-df7ebe5ca326)] |
michael@0 | 15 | |
michael@0 | 16 | interface nsICookie2 : nsICookie |
michael@0 | 17 | { |
michael@0 | 18 | |
michael@0 | 19 | /** |
michael@0 | 20 | * the host (possibly fully qualified) of the cookie, |
michael@0 | 21 | * without a leading dot to represent if it is a |
michael@0 | 22 | * domain cookie. |
michael@0 | 23 | */ |
michael@0 | 24 | readonly attribute AUTF8String rawHost; |
michael@0 | 25 | |
michael@0 | 26 | /** |
michael@0 | 27 | * true if the cookie is a session cookie. |
michael@0 | 28 | * note that expiry time will also be honored |
michael@0 | 29 | * for session cookies (see below); thus, whichever is |
michael@0 | 30 | * the more restrictive of the two will take effect. |
michael@0 | 31 | */ |
michael@0 | 32 | readonly attribute boolean isSession; |
michael@0 | 33 | |
michael@0 | 34 | /** |
michael@0 | 35 | * the actual expiry time of the cookie, in seconds |
michael@0 | 36 | * since midnight (00:00:00), January 1, 1970 UTC. |
michael@0 | 37 | * |
michael@0 | 38 | * this is distinct from nsICookie::expires, which |
michael@0 | 39 | * has different and obsolete semantics. |
michael@0 | 40 | */ |
michael@0 | 41 | readonly attribute int64_t expiry; |
michael@0 | 42 | |
michael@0 | 43 | /** |
michael@0 | 44 | * true if the cookie is an http only cookie |
michael@0 | 45 | */ |
michael@0 | 46 | readonly attribute boolean isHttpOnly; |
michael@0 | 47 | |
michael@0 | 48 | /** |
michael@0 | 49 | * the creation time of the cookie, in microseconds |
michael@0 | 50 | * since midnight (00:00:00), January 1, 1970 UTC. |
michael@0 | 51 | */ |
michael@0 | 52 | readonly attribute int64_t creationTime; |
michael@0 | 53 | |
michael@0 | 54 | /** |
michael@0 | 55 | * the last time the cookie was accessed (i.e. created, |
michael@0 | 56 | * modified, or read by the server), in microseconds |
michael@0 | 57 | * since midnight (00:00:00), January 1, 1970 UTC. |
michael@0 | 58 | * |
michael@0 | 59 | * note that this time may be approximate. |
michael@0 | 60 | */ |
michael@0 | 61 | readonly attribute int64_t lastAccessed; |
michael@0 | 62 | |
michael@0 | 63 | }; |