summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/XHR/ProgressEvent.h
diff options
context:
space:
mode:
authorstelar7 <dudedbz@gmail.com>2022-05-10 11:08:02 +0200
committerLinus Groh <mail@linusgroh.de>2022-06-06 22:34:45 +0100
commit94bb5a779b47ca20502e0f53154758eede33b4a4 (patch)
tree36f4bd4651c89a600c8d9563b5fbee3d94c487bd /Userland/Libraries/LibWeb/XHR/ProgressEvent.h
parent3413eb141653f91b31a64b901c213872259d2c03 (diff)
downloadserenity-94bb5a779b47ca20502e0f53154758eede33b4a4.zip
LibWeb: Use `long long` where it was replaced with `long`
Diffstat (limited to 'Userland/Libraries/LibWeb/XHR/ProgressEvent.h')
-rw-r--r--Userland/Libraries/LibWeb/XHR/ProgressEvent.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Userland/Libraries/LibWeb/XHR/ProgressEvent.h b/Userland/Libraries/LibWeb/XHR/ProgressEvent.h
index cad8d1f139..e7ed17eb69 100644
--- a/Userland/Libraries/LibWeb/XHR/ProgressEvent.h
+++ b/Userland/Libraries/LibWeb/XHR/ProgressEvent.h
@@ -35,8 +35,8 @@ public:
virtual ~ProgressEvent() override = default;
bool length_computable() const { return m_length_computable; }
- u32 loaded() const { return m_loaded; }
- u32 total() const { return m_total; }
+ u64 loaded() const { return m_loaded; }
+ u64 total() const { return m_total; }
protected:
ProgressEvent(FlyString const& event_name, ProgressEventInit const& event_init)
@@ -48,8 +48,8 @@ protected:
}
bool m_length_computable { false };
- u32 m_loaded { 0 };
- u32 m_total { 0 };
+ u64 m_loaded { 0 };
+ u64 m_total { 0 };
};
}