Bug 1822331 [wpt PR 38990] - [@scope] Enable implicit :scope and relative selectors...
[gecko.git] / xpcom / base / nsIUUIDGenerator.idl
blob22087adfa842014890ce4dc30bd4791c8ae786b0
1 /* -*- Mode: C++; tab-width: 50; 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 #include "nsISupports.idl"
8 [ptr] native nsNonConstIDPtr(nsID);
10 /**
11 * nsIUUIDGenerator is implemented by a service that can generate
12 * universally unique identifiers, ideally using any platform-native
13 * method for generating UUIDs.
15 [builtinclass, scriptable, uuid(138ad1b2-c694-41cc-b201-333ce936d8b8)]
16 interface nsIUUIDGenerator : nsISupports
18 /**
19 * Obtains a new UUID using appropriate platform-specific methods to
20 * obtain a nsID that can be considered to be globally unique.
22 * @returns an nsID filled in with a new UUID.
24 * @throws NS_ERROR_FAILURE if a UUID cannot be generated (e.g. if
25 * an underlying source of randomness is not available)
27 nsIDPtr generateUUID();
29 /**
30 * Obtain a new UUID like the generateUUID method, but place it in
31 * the provided nsID pointer instead of allocating a new nsID.
33 * @param id an existing nsID pointer where the UUID will be stored.
35 * @throws NS_ERROR_FAILURE if a UUID cannot be generated (e.g. if
36 * an underlying source of randomness is not available)
38 [noscript] void generateUUIDInPlace(in nsNonConstIDPtr id);