1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:17:44 +00:00

Ladybird+LibWebView: Move console history tracking to ConsoleClient

This will allow other chromes to make use of history in their console
implementations.
This commit is contained in:
Timothy Flynn 2023-08-30 08:45:26 -04:00 committed by Andrew Kaster
parent ed315dd950
commit 204a6f9241
6 changed files with 69 additions and 34 deletions

View file

@ -9,6 +9,7 @@
#include <AK/DeprecatedString.h>
#include <AK/Function.h>
#include <AK/Span.h>
#include <AK/String.h>
#include <AK/StringView.h>
#include <AK/Vector.h>
#include <LibWebView/Forward.h>
@ -20,7 +21,10 @@ public:
explicit ConsoleClient(ViewImplementation& content_web_view, ViewImplementation& console_web_view);
~ConsoleClient();
void execute(StringView);
void execute(String);
Optional<String> previous_history_item();
Optional<String> next_history_item();
void clear();
void reset();
@ -50,6 +54,9 @@ private:
};
Vector<Group> m_group_stack;
int m_next_group_id { 1 };
Vector<String> m_history;
size_t m_history_index { 0 };
};
}