diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-03-14 12:38:55 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-03-14 12:38:55 +0100 |
commit | 302f17e514772770f5555ce939b21b194514ebc3 (patch) | |
tree | aca62ce6a23c2a9b08cfa27987586463aafef760 /dom/ipc/TabChild.h | |
parent | 959f6d2881edaf7389b439ca69bcf881622d06a2 (diff) | |
download | UXP-302f17e514772770f5555ce939b21b194514ebc3.tar UXP-302f17e514772770f5555ce939b21b194514ebc3.tar.gz UXP-302f17e514772770f5555ce939b21b194514ebc3.tar.lz UXP-302f17e514772770f5555ce939b21b194514ebc3.tar.xz UXP-302f17e514772770f5555ce939b21b194514ebc3.zip |
Revert "Bug 1438425 - Delete DocumentRenderer. r=jesup, a=RyanVM"
This reverts commit 5b69e05939c7fd3f917e2dd0f399774b3b15c886.
Diffstat (limited to 'dom/ipc/TabChild.h')
-rw-r--r-- | dom/ipc/TabChild.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/dom/ipc/TabChild.h b/dom/ipc/TabChild.h index 2232ffeaf..b23c7c19e 100644 --- a/dom/ipc/TabChild.h +++ b/dom/ipc/TabChild.h @@ -445,6 +445,27 @@ public: virtual bool DeallocPDocAccessibleChild(PDocAccessibleChild*) override; + virtual PDocumentRendererChild* + AllocPDocumentRendererChild(const nsRect& aDocumentRect, + const gfx::Matrix& aTransform, + const nsString& aBggcolor, + const uint32_t& aRenderFlags, + const bool& aFlushLayout, + const nsIntSize& arenderSize) override; + + virtual bool + DeallocPDocumentRendererChild(PDocumentRendererChild* aCctor) override; + + virtual bool + RecvPDocumentRendererConstructor(PDocumentRendererChild* aActor, + const nsRect& aDocumentRect, + const gfx::Matrix& aTransform, + const nsString& aBgcolor, + const uint32_t& aRenderFlags, + const bool& aFlushLayout, + const nsIntSize& aRenderSize) override; + + virtual PColorPickerChild* AllocPColorPickerChild(const nsString& aTitle, const nsString& aInitialColor) override; |