2012-05-21 04:12:37 -07: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 10:58:31 -07: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();
|
|
|
|
|
2010-10-26 15:20:53 -07:00
|
|
|
bool RenderDocument(nsIDOMWindow *window,
|
2010-10-26 15:20:53 -07:00
|
|
|
const nsRect& documentRect, const gfxMatrix& transform,
|
|
|
|
const nsString& bgcolor,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t renderFlags, bool flushLayout,
|
2010-10-26 15:20:53 -07:00
|
|
|
const nsIntSize& renderSize, nsCString& data);
|
2009-10-29 10:58:31 -07:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
DISALLOW_EVIL_CONSTRUCTORS(DocumentRendererChild);
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|