2009-10-29 10:58:31 -07:00
|
|
|
/* -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 8 -*- */
|
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
|
|
|
|
2010-07-19 11:33:33 -07:00
|
|
|
include protocol PBrowser;
|
2009-10-29 10:58:31 -07:00
|
|
|
|
2013-07-26 12:28:31 -07:00
|
|
|
include "mozilla/GfxMessageUtils.h";
|
|
|
|
|
2013-10-01 12:25:07 -07:00
|
|
|
using struct nsIntSize from "nsSize.h";
|
2010-10-26 15:20:53 -07:00
|
|
|
|
2009-10-29 10:58:31 -07:00
|
|
|
namespace mozilla {
|
|
|
|
namespace ipc {
|
|
|
|
|
|
|
|
protocol PDocumentRenderer
|
|
|
|
{
|
2010-07-19 11:33:33 -07:00
|
|
|
manager PBrowser;
|
2009-12-03 00:16:14 -08:00
|
|
|
|
|
|
|
parent:
|
2010-03-24 03:47:18 -07:00
|
|
|
// Returns the width and height, in pixels, of the returned ARGB32 data.
|
2010-10-26 15:20:53 -07:00
|
|
|
__delete__(nsIntSize renderedSize, nsCString data);
|
2009-10-29 10:58:31 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace ipc
|
|
|
|
} // namespace mozilla
|