From 6bf0a5cb5034a7e684dcc3500e841785237ce2dd Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 19:32:43 +0200 Subject: Adding upstream version 1:115.7.0. Signed-off-by: Daniel Baumann --- dom/media/doctor/DDLogCategory.h | 41 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 dom/media/doctor/DDLogCategory.h (limited to 'dom/media/doctor/DDLogCategory.h') diff --git a/dom/media/doctor/DDLogCategory.h b/dom/media/doctor/DDLogCategory.h new file mode 100644 index 0000000000..2c8494b690 --- /dev/null +++ b/dom/media/doctor/DDLogCategory.h @@ -0,0 +1,41 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* vim:set ts=2 sw=2 sts=2 et cindent: */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef DDLogCategory_h_ +#define DDLogCategory_h_ + +#include "mozilla/Assertions.h" +#include "mozilla/DefineEnum.h" + +namespace mozilla { + +// Enum used to categorize log messages. +// Those starting with '_' are for internal use only. +MOZ_DEFINE_ENUM_CLASS(DDLogCategory, + (_Construction, _DerivedConstruction, _Destruction, _Link, + _Unlink, Property, Event, API, Log, MozLogError, + MozLogWarning, MozLogInfo, MozLogDebug, MozLogVerbose)); + +// Corresponding short strings, used as JSON property names when logs are +// retrieved. +extern const char* const kDDLogCategoryShortStrings[kDDLogCategoryCount]; + +inline const char* ToShortString(DDLogCategory aCategory) { + MOZ_ASSERT(static_cast(aCategory) < kDDLogCategoryCount); + return kDDLogCategoryShortStrings[static_cast(aCategory)]; +} + +// Corresponding long strings, for use in descriptive UI. +extern const char* const kDDLogCategoryLongStrings[kDDLogCategoryCount]; + +inline const char* ToLongString(DDLogCategory aCategory) { + MOZ_ASSERT(static_cast(aCategory) < kDDLogCategoryCount); + return kDDLogCategoryLongStrings[static_cast(aCategory)]; +} + +} // namespace mozilla + +#endif // DDLogCategory_h_ -- cgit v1.2.3