diff options
author | Timothy Flynn <trflynn89@pm.me> | 2022-11-10 10:33:29 -0500 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-11-10 17:02:11 +0000 |
commit | 30d6a73d0ee552ee889a8550b2c87cd7d10957ff (patch) | |
tree | 14fbfa8c35c7516767af5392ee9a84b6fa80bb49 /Userland/Libraries/LibWebView | |
parent | 9dd62228c8a1a8cb68875381a05a20e765fd7d61 (diff) | |
download | serenity-30d6a73d0ee552ee889a8550b2c87cd7d10957ff.zip |
Browser+WebContent+WebDriver: Move Get Element Rect to WebContent
Diffstat (limited to 'Userland/Libraries/LibWebView')
-rw-r--r-- | Userland/Libraries/LibWebView/OutOfProcessWebView.cpp | 5 | ||||
-rw-r--r-- | Userland/Libraries/LibWebView/OutOfProcessWebView.h | 1 |
2 files changed, 0 insertions, 6 deletions
diff --git a/Userland/Libraries/LibWebView/OutOfProcessWebView.cpp b/Userland/Libraries/LibWebView/OutOfProcessWebView.cpp index 2b0dd8e312..899294f7d4 100644 --- a/Userland/Libraries/LibWebView/OutOfProcessWebView.cpp +++ b/Userland/Libraries/LibWebView/OutOfProcessWebView.cpp @@ -559,11 +559,6 @@ void OutOfProcessWebView::scroll_element_into_view(i32 element_id) return client().scroll_element_into_view(element_id); } -Gfx::IntRect OutOfProcessWebView::get_element_rect(i32 element_id) -{ - return client().get_element_rect(element_id); -} - bool OutOfProcessWebView::is_element_enabled(i32 element_id) { return client().is_element_enabled(element_id); diff --git a/Userland/Libraries/LibWebView/OutOfProcessWebView.h b/Userland/Libraries/LibWebView/OutOfProcessWebView.h index 24fdad5f21..926e6cc7ae 100644 --- a/Userland/Libraries/LibWebView/OutOfProcessWebView.h +++ b/Userland/Libraries/LibWebView/OutOfProcessWebView.h @@ -64,7 +64,6 @@ public: OrderedHashMap<String, String> get_session_storage_entries(); void scroll_element_into_view(i32 element_id); - Gfx::IntRect get_element_rect(i32 element_id); bool is_element_enabled(i32 element_id); void set_content_filters(Vector<String>); |