mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 01:17:35 +00:00
LibWeb: Use WebIDL integer typedefs in ProgressEvent
This commit is contained in:
parent
3e756da564
commit
b6292a2d7d
1 changed files with 4 additions and 4 deletions
|
@ -29,8 +29,8 @@ public:
|
||||||
virtual ~ProgressEvent() override;
|
virtual ~ProgressEvent() override;
|
||||||
|
|
||||||
bool length_computable() const { return m_length_computable; }
|
bool length_computable() const { return m_length_computable; }
|
||||||
u64 loaded() const { return m_loaded; }
|
WebIDL::UnsignedLongLong loaded() const { return m_loaded; }
|
||||||
u64 total() const { return m_total; }
|
WebIDL::UnsignedLongLong total() const { return m_total; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
ProgressEvent(JS::Realm&, FlyString const& event_name, ProgressEventInit const& event_init);
|
ProgressEvent(JS::Realm&, FlyString const& event_name, ProgressEventInit const& event_init);
|
||||||
|
@ -38,8 +38,8 @@ private:
|
||||||
virtual void initialize(JS::Realm&) override;
|
virtual void initialize(JS::Realm&) override;
|
||||||
|
|
||||||
bool m_length_computable { false };
|
bool m_length_computable { false };
|
||||||
u64 m_loaded { 0 };
|
WebIDL::UnsignedLongLong m_loaded { 0 };
|
||||||
u64 m_total { 0 };
|
WebIDL::UnsignedLongLong m_total { 0 };
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue