2012-05-21 12:12:37 +01:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2009-10-29 13:58:31 -04:00
|
|
|
|
|
|
|
#ifndef mozilla_dom_DocumentRendererChild
|
|
|
|
#define mozilla_dom_DocumentRendererChild
|
|
|
|
|
|
|
|
#include "mozilla/ipc/PDocumentRendererChild.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "gfxContext.h"
|
|
|
|
|
|
|
|
class nsIDOMWindow;
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace ipc {
|
|
|
|
|
|
|
|
class DocumentRendererChild : public PDocumentRendererChild
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
DocumentRendererChild();
|
|
|
|
virtual ~DocumentRendererChild();
|
2013-12-26 13:06:53 -05:00
|
|
|
|
2016-01-30 09:05:36 -08:00
|
|
|
bool RenderDocument(nsPIDOMWindowOuter* window,
|
2013-12-26 13:06:53 -05:00
|
|
|
const nsRect& documentRect, const gfx::Matrix& transform,
|
2010-10-26 17:20:53 -05:00
|
|
|
const nsString& bgcolor,
|
2013-12-26 13:06:53 -05:00
|
|
|
uint32_t renderFlags, bool flushLayout,
|
2010-10-26 17:20:53 -05:00
|
|
|
const nsIntSize& renderSize, nsCString& data);
|
2009-10-29 13:58:31 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
DISALLOW_EVIL_CONSTRUCTORS(DocumentRendererChild);
|
|
|
|
};
|
|
|
|
|
2015-07-13 08:25:42 -07:00
|
|
|
} // namespace ipc
|
|
|
|
} // namespace mozilla
|
2009-10-29 13:58:31 -04:00
|
|
|
|
|
|
|
#endif
|