mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 01:47:34 +00:00
LibWeb: Convert navigationId from DeprecatedString to String
This commit is contained in:
parent
71c98546b8
commit
9f691b7fe4
7 changed files with 13 additions and 13 deletions
|
@ -426,8 +426,8 @@ public:
|
|||
bool is_completely_loaded() const;
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/dom.html#concept-document-navigation-id
|
||||
Optional<DeprecatedString> navigation_id() const;
|
||||
void set_navigation_id(Optional<DeprecatedString>);
|
||||
Optional<String> navigation_id() const;
|
||||
void set_navigation_id(Optional<String>);
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/origin.html#active-sandboxing-flag-set
|
||||
HTML::SandboxingFlagSet active_sandboxing_flag_set() const;
|
||||
|
@ -609,7 +609,7 @@ private:
|
|||
Optional<AK::Time> m_completely_loaded_time;
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/dom.html#concept-document-navigation-id
|
||||
Optional<DeprecatedString> m_navigation_id;
|
||||
Optional<String> m_navigation_id;
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/origin.html#active-sandboxing-flag-set
|
||||
HTML::SandboxingFlagSet m_active_sandboxing_flag_set;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue