diff options
author | Linus Groh <mail@linusgroh.de> | 2020-10-08 21:12:10 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-10-08 23:20:52 +0200 |
commit | f6af2d747e236e938f0015ba2a0b4a968f9f8dd1 (patch) | |
tree | 8859f6e3dd8e5c24532bcf66c9be6b3d5c8de709 /Libraries/LibWeb | |
parent | 9f3789cdc7149c8bbdec22fc3a70d2de10b6ff79 (diff) | |
download | serenity-f6af2d747e236e938f0015ba2a0b4a968f9f8dd1.zip |
TextEditor: Replace InProcessWebView with OutOfProcessWebView
Diffstat (limited to 'Libraries/LibWeb')
-rw-r--r-- | Libraries/LibWeb/Forward.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Libraries/LibWeb/Forward.h b/Libraries/LibWeb/Forward.h index deb84f39f2..4384d5f65e 100644 --- a/Libraries/LibWeb/Forward.h +++ b/Libraries/LibWeb/Forward.h @@ -148,6 +148,7 @@ namespace Web { class EventHandler; class Frame; class FrameLoader; +class InProcessWebView; class LayoutBlock; class LayoutButton; class LayoutCheckBox; @@ -159,9 +160,9 @@ class LineBox; class LineBoxFragment; class LoadRequest; class Origin; +class OutOfProcessWebView; class Page; class PageClient; -class InProcessWebView; class PaintContext; class Resource; class ResourceLoader; |