1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:37:35 +00:00

LibWeb: Port Crypto to new String

This commit is contained in:
Kenneth Myhra 2023-02-23 18:58:56 +01:00 committed by Linus Groh
parent 450ffbe612
commit a8cef1fa06
2 changed files with 10 additions and 8 deletions

View file

@ -23,7 +23,7 @@ public:
JS::NonnullGCPtr<SubtleCrypto> subtle() const;
WebIDL::ExceptionOr<JS::Value> get_random_values(JS::Value array) const;
DeprecatedString random_uuid() const;
WebIDL::ExceptionOr<String> random_uuid() const;
protected:
virtual JS::ThrowCompletionOr<void> initialize(JS::Realm&) override;