1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 22:57:34 +00:00

Ladybird: Update for AK::{String => DeprecatedString} rename

This commit is contained in:
Linus Groh 2022-12-04 18:43:54 +00:00 committed by Andrew Kaster
parent 97dd5a085f
commit 5a5c4f079b
29 changed files with 172 additions and 172 deletions

View file

@ -25,7 +25,7 @@ class ConsoleClient final : public JS::ConsoleClient {
public:
ConsoleClient(JS::Console&, JS::Realm&, SimpleWebView&);
void handle_input(String const& js_source);
void handle_input(DeprecatedString const& js_source);
void send_messages(i32 start_index);
private:
@ -44,8 +44,8 @@ private:
JS::Handle<ConsoleGlobalObject> m_console_global_object;
void clear_output();
void print_html(String const& line);
void begin_group(String const& label, bool start_expanded);
void print_html(DeprecatedString const& line);
void begin_group(DeprecatedString const& label, bool start_expanded);
virtual void end_group() override;
struct ConsoleOutput {
@ -57,7 +57,7 @@ private:
EndGroup,
};
Type type;
String data;
DeprecatedString data;
};
Vector<ConsoleOutput> m_message_log;