tor-browser

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

MediaContainerType.cpp (1119B)


      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 #include "MediaContainerType.h"
      8 
      9 namespace mozilla {
     10 
     11 size_t MediaContainerType::SizeOfExcludingThis(
     12    MallocSizeOf aMallocSizeOf) const {
     13  return mExtendedMIMEType.SizeOfExcludingThis(aMallocSizeOf);
     14 }
     15 
     16 Maybe<MediaContainerType> MakeMediaContainerType(const nsAString& aType) {
     17  Maybe<MediaExtendedMIMEType> mime = MakeMediaExtendedMIMEType(aType);
     18  if (mime) {
     19    return Some(MediaContainerType(std::move(*mime)));
     20  }
     21  return Nothing();
     22 }
     23 
     24 Maybe<MediaContainerType> MakeMediaContainerType(const nsACString& aType) {
     25  return MakeMediaContainerType(NS_ConvertUTF8toUTF16(aType));
     26 }
     27 
     28 Maybe<MediaContainerType> MakeMediaContainerType(const char* aType) {
     29  if (!aType) {
     30    return Nothing();
     31  }
     32  return MakeMediaContainerType(nsDependentCString(aType));
     33 }
     34 
     35 }  // namespace mozilla