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