summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/InProcessWebView.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-11-11 00:55:02 +0100
committerAndreas Kling <kling@serenityos.org>2021-11-11 01:27:46 +0100
commit8b1108e4858f797c9216dc8ae4a3918ad50c73b4 (patch)
treeca64ba25aa735d25013d76c6d83570496c742014 /Userland/Libraries/LibWeb/InProcessWebView.h
parentad5d217e760c7fb73ffc0c4c827d767d6be8ec80 (diff)
downloadserenity-8b1108e4858f797c9216dc8ae4a3918ad50c73b4.zip
Everywhere: Pass AK::StringView by value
Diffstat (limited to 'Userland/Libraries/LibWeb/InProcessWebView.h')
-rw-r--r--Userland/Libraries/LibWeb/InProcessWebView.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/InProcessWebView.h b/Userland/Libraries/LibWeb/InProcessWebView.h
index 3cb56133ef..b51a384e2c 100644
--- a/Userland/Libraries/LibWeb/InProcessWebView.h
+++ b/Userland/Libraries/LibWeb/InProcessWebView.h
@@ -24,7 +24,7 @@ class InProcessWebView final
public:
virtual ~InProcessWebView() override;
- void load_html(const StringView&, const AK::URL&);
+ void load_html(StringView, const AK::URL&);
void load_empty_document();
DOM::Document* document();