|
@@ -13,6 +13,7 @@
|
|
#include <AK/OwnPtr.h>
|
|
#include <AK/OwnPtr.h>
|
|
#include <AK/String.h>
|
|
#include <AK/String.h>
|
|
#include <AK/URL.h>
|
|
#include <AK/URL.h>
|
|
|
|
+#include <AK/Vector.h>
|
|
#include <AK/WeakPtr.h>
|
|
#include <AK/WeakPtr.h>
|
|
#include <LibCore/Forward.h>
|
|
#include <LibCore/Forward.h>
|
|
#include <LibJS/Forward.h>
|
|
#include <LibJS/Forward.h>
|
|
@@ -243,6 +244,9 @@ public:
|
|
|
|
|
|
Window& window() { return *m_window; }
|
|
Window& window() { return *m_window; }
|
|
|
|
|
|
|
|
+ void write(Vector<String> const& strings);
|
|
|
|
+ void writeln(Vector<String> const& strings);
|
|
|
|
+
|
|
Window* default_view() { return m_window; }
|
|
Window* default_view() { return m_window; }
|
|
|
|
|
|
const String& content_type() const { return m_content_type; }
|
|
const String& content_type() const { return m_content_type; }
|