js/public/Date.h

Tue, 06 Jan 2015 21:39:09 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Tue, 06 Jan 2015 21:39:09 +0100
branch
TOR_BUG_9701
changeset 8
97036ab72558
permissions
-rw-r--r--

Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.

     1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
     2 /* This Source Code Form is subject to the terms of the Mozilla Public
     3  * License, v. 2.0. If a copy of the MPL was not distributed with this
     4  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     6 #ifndef js_Date_h
     7 #define js_Date_h
     9 #include "jstypes.h"
    11 namespace JS {
    13 // Year is a year, month is 0-11, day is 1-based.  The return value is
    14 // a number of milliseconds since the epoch.  Can return NaN.
    15 JS_PUBLIC_API(double)
    16 MakeDate(double year, unsigned month, unsigned day);
    18 // Takes an integer number of milliseconds since the epoch and returns the
    19 // year.  Can return NaN, and will do so if NaN is passed in.
    20 JS_PUBLIC_API(double)
    21 YearFromTime(double time);
    23 // Takes an integer number of milliseconds since the epoch and returns the
    24 // month (0-11).  Can return NaN, and will do so if NaN is passed in.
    25 JS_PUBLIC_API(double)
    26 MonthFromTime(double time);
    28 // Takes an integer number of milliseconds since the epoch and returns the
    29 // day (1-based).  Can return NaN, and will do so if NaN is passed in.
    30 JS_PUBLIC_API(double)
    31 DayFromTime(double time);
    33 } // namespace JS
    35 #endif /* js_Date_h */

mercurial