Bug 1886946: Remove incorrect assertion that buffer is not-pinned. r=sfink
[gecko.git] / dom / indexedDB / ScriptErrorHelper.h
blob691411b82fc44094ba3a3c8930ee18f8e8f0bfc4
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 #ifndef mozilla_dom_indexeddb_scripterrorhelper_h__
8 #define mozilla_dom_indexeddb_scripterrorhelper_h__
10 #include <inttypes.h>
11 #include "nsStringFwd.h"
13 namespace mozilla::dom::indexedDB {
15 // Helper to report a script error to the main thread.
16 class ScriptErrorHelper {
17 public:
18 static void Dump(const nsAString& aMessage, const nsAString& aFilename,
19 uint32_t aLineNumber, uint32_t aColumnNumber,
20 uint32_t aSeverityFlag, /* nsIScriptError::xxxFlag */
21 bool aIsChrome, uint64_t aInnerWindowID);
23 static void DumpLocalizedMessage(
24 const nsACString& aMessageName, const nsAString& aFilename,
25 uint32_t aLineNumber, uint32_t aColumnNumber,
26 uint32_t aSeverityFlag, /* nsIScriptError::xxxFlag */
27 bool aIsChrome, uint64_t aInnerWindowID);
30 } // namespace mozilla::dom::indexedDB
32 #endif // mozilla_dom_indexeddb_scripterrorhelper_h__