Bug 1777562 [wpt PR 34663] - [FedCM] Rename FederatedCredential to IdentityCredential...
[gecko.git] / widget / gtk / GUniquePtr.h
blob723e8719e87ee75883b51879fc708c62cdfb36da
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #ifndef GUniquePtr_h_
7 #define GUniquePtr_h_
9 // Provides GUniquePtr to g_free a given pointer.
11 #include <glib.h>
12 #include <gtk/gtk.h>
13 #include "mozilla/UniquePtr.h"
15 namespace mozilla {
17 struct GFreeDeleter {
18 constexpr GFreeDeleter() = default;
19 void operator()(GdkEventKey* aPtr) const { gdk_event_free((GdkEvent*)aPtr); }
20 void operator()(GdkEvent* aPtr) const { gdk_event_free(aPtr); }
21 void operator()(GError* aPtr) const { g_error_free(aPtr); }
22 void operator()(void* aPtr) const { g_free(aPtr); }
23 void operator()(GtkPaperSize* aPtr) const { gtk_paper_size_free(aPtr); }
26 template <typename T>
27 using GUniquePtr = UniquePtr<T, GFreeDeleter>;
29 } // namespace mozilla
31 #endif