diff options
author | Jeff Muizelaar <jmuizelaar@mozilla.com> | 2018-03-02 15:56:02 -0500 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-03-14 12:34:36 +0100 |
commit | 5b69e05939c7fd3f917e2dd0f399774b3b15c886 (patch) | |
tree | c5a409912c0ce8d0e5a26c12eaa092b25ec0bc26 /dom/ipc/TabChild.cpp | |
parent | 2d689a1bc3454e42a241724ad72007a5ee215742 (diff) | |
download | UXP-5b69e05939c7fd3f917e2dd0f399774b3b15c886.tar UXP-5b69e05939c7fd3f917e2dd0f399774b3b15c886.tar.gz UXP-5b69e05939c7fd3f917e2dd0f399774b3b15c886.tar.lz UXP-5b69e05939c7fd3f917e2dd0f399774b3b15c886.tar.xz UXP-5b69e05939c7fd3f917e2dd0f399774b3b15c886.zip |
Bug 1438425 - Delete DocumentRenderer. r=jesup, a=RyanVM
It is unused.
--HG--
extra : histedit_source : b7af9f250f0330f90547114184873ae9971f20fc
Diffstat (limited to 'dom/ipc/TabChild.cpp')
-rw-r--r-- | dom/ipc/TabChild.cpp | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/dom/ipc/TabChild.cpp b/dom/ipc/TabChild.cpp index eaf4a32ed..f46a917d5 100644 --- a/dom/ipc/TabChild.cpp +++ b/dom/ipc/TabChild.cpp @@ -22,7 +22,6 @@ #include "mozilla/dom/indexedDB/PIndexedDBPermissionRequestChild.h" #include "mozilla/plugins/PluginWidgetChild.h" #include "mozilla/IMEStateManager.h" -#include "mozilla/ipc/DocumentRendererChild.h" #include "mozilla/ipc/URIUtils.h" #include "mozilla/layers/APZChild.h" #include "mozilla/layers/APZCCallbackHelper.h" @@ -2006,57 +2005,6 @@ TabChild::DeallocPDocAccessibleChild(a11y::PDocAccessibleChild* aChild) return true; } -PDocumentRendererChild* -TabChild::AllocPDocumentRendererChild(const nsRect& documentRect, - const mozilla::gfx::Matrix& transform, - const nsString& bgcolor, - const uint32_t& renderFlags, - const bool& flushLayout, - const nsIntSize& renderSize) -{ - return new DocumentRendererChild(); -} - -bool -TabChild::DeallocPDocumentRendererChild(PDocumentRendererChild* actor) -{ - delete actor; - return true; -} - -bool -TabChild::RecvPDocumentRendererConstructor(PDocumentRendererChild* actor, - const nsRect& documentRect, - const mozilla::gfx::Matrix& transform, - const nsString& bgcolor, - const uint32_t& renderFlags, - const bool& flushLayout, - const nsIntSize& renderSize) -{ - DocumentRendererChild *render = static_cast<DocumentRendererChild *>(actor); - - nsCOMPtr<nsIWebBrowser> browser = do_QueryInterface(WebNavigation()); - if (!browser) - return true; // silently ignore - nsCOMPtr<mozIDOMWindowProxy> window; - if (NS_FAILED(browser->GetContentDOMWindow(getter_AddRefs(window))) || - !window) - { - return true; // silently ignore - } - - nsCString data; - bool ret = render->RenderDocument(nsPIDOMWindowOuter::From(window), - documentRect, transform, - bgcolor, - renderFlags, flushLayout, - renderSize, data); - if (!ret) - return true; // silently ignore - - return PDocumentRendererChild::Send__delete__(actor, renderSize, data); -} - PColorPickerChild* TabChild::AllocPColorPickerChild(const nsString&, const nsString&) { |