aboutsummaryrefslogtreecommitdiff
path: root/src/platform/graphics/web_canvas/WebCanvasRef.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/platform/graphics/web_canvas/WebCanvasRef.cpp')
-rw-r--r--src/platform/graphics/web_canvas/WebCanvasRef.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/platform/graphics/web_canvas/WebCanvasRef.cpp b/src/platform/graphics/web_canvas/WebCanvasRef.cpp
index c4f75626..886131f6 100644
--- a/src/platform/graphics/web_canvas/WebCanvasRef.cpp
+++ b/src/platform/graphics/web_canvas/WebCanvasRef.cpp
@@ -1,5 +1,5 @@
#include "cru/platform/graphics/web_canvas/WebCanvasRef.h"
-#include "cru/platform/web/JsUtility.h"
+#include "cru/platform/web/Js.h"
#include <cassert>
#include <utility>
@@ -7,7 +7,7 @@
namespace cru::platform::graphics::web_canvas {
WebCanvasRef::WebCanvasRef(emscripten::val canvas_val)
: val_(std::move(canvas_val)) {
- assert(web::IsNotNullAndInstanceOf(val_, "HTMLCanvasElement"));
+ assert(web::js::IsNotNullAndInstanceOf(val_, "HTMLCanvasElement"));
}
int WebCanvasRef::GetWidth() const { return val_["width"].as<int>(); }