summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/WebGL/WebGLContextAttributes.h
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2022-08-21 21:29:06 +0100
committerLinus Groh <mail@linusgroh.de>2022-08-23 13:58:30 +0100
commit7b990c27a14eddd152932d8540afc8c3838030fb (patch)
treecc59eac9162a369ba11d979bf442fe4b2593cc4a /Userland/Libraries/LibWeb/WebGL/WebGLContextAttributes.h
parent2d69a3b2660801ee14655f3df878611ffd904ae3 (diff)
downloadserenity-7b990c27a14eddd152932d8540afc8c3838030fb.zip
LibWeb: Replace GlobalObject with VM in remaining AOs [Part 4/4]
Diffstat (limited to 'Userland/Libraries/LibWeb/WebGL/WebGLContextAttributes.h')
-rw-r--r--Userland/Libraries/LibWeb/WebGL/WebGLContextAttributes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/WebGL/WebGLContextAttributes.h b/Userland/Libraries/LibWeb/WebGL/WebGLContextAttributes.h
index 8888d0771b..196d1798fb 100644
--- a/Userland/Libraries/LibWeb/WebGL/WebGLContextAttributes.h
+++ b/Userland/Libraries/LibWeb/WebGL/WebGLContextAttributes.h
@@ -29,6 +29,6 @@ struct WebGLContextAttributes {
bool desynchronized { false };
};
-JS::ThrowCompletionOr<WebGLContextAttributes> convert_value_to_context_attributes_dictionary(JS::GlobalObject& global_object, JS::Value value);
+JS::ThrowCompletionOr<WebGLContextAttributes> convert_value_to_context_attributes_dictionary(JS::VM&, JS::Value value);
}