tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

SMILTypes.h (925B)


      1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
      2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
      3 /* This Source Code Form is subject to the terms of the Mozilla Public
      4 * License, v. 2.0. If a copy of the MPL was not distributed with this
      5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      6 
      7 #ifndef DOM_SMIL_SMILTYPES_H_
      8 #define DOM_SMIL_SMILTYPES_H_
      9 
     10 #include <stdint.h>
     11 
     12 namespace mozilla {
     13 
     14 // A timestamp in milliseconds
     15 //
     16 // A time may represent:
     17 //
     18 //   simple time -- offset within the simple duration
     19 //   active time -- offset within the active duration
     20 //   document time -- offset since the document begin
     21 //   wallclock time -- "real" time -- offset since the epoch
     22 //
     23 // For an overview of how this class is related to other SMIL time classes see
     24 // the documentation in SMILTimeValue.h
     25 //
     26 using SMILTime = int64_t;
     27 
     28 }  // namespace mozilla
     29 
     30 #endif  // DOM_SMIL_SMILTYPES_H_