Bug 1839170 - Refactor Snap pulling, Add Firefox Snap Core22 and GNOME 42 SDK symbols...
[gecko.git] / dom / media / MediaContainerType.cpp
blobc657110e02f3ade8cef1011abcbc35340abb6785
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/. */
7 #include "MediaContainerType.h"
9 namespace mozilla {
11 size_t MediaContainerType::SizeOfExcludingThis(
12 MallocSizeOf aMallocSizeOf) const {
13 return mExtendedMIMEType.SizeOfExcludingThis(aMallocSizeOf);
16 Maybe<MediaContainerType> MakeMediaContainerType(const nsAString& aType) {
17 Maybe<MediaExtendedMIMEType> mime = MakeMediaExtendedMIMEType(aType);
18 if (mime) {
19 return Some(MediaContainerType(std::move(*mime)));
21 return Nothing();
24 Maybe<MediaContainerType> MakeMediaContainerType(const nsACString& aType) {
25 return MakeMediaContainerType(NS_ConvertUTF8toUTF16(aType));
28 Maybe<MediaContainerType> MakeMediaContainerType(const char* aType) {
29 if (!aType) {
30 return Nothing();
32 return MakeMediaContainerType(nsDependentCString(aType));
35 } // namespace mozilla