2011-01-27 14:37:00 -08:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
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/. */
|
2011-01-27 14:37:00 -08:00
|
|
|
|
|
|
|
#include "mozilla/plugins/PluginSurfaceParent.h"
|
|
|
|
#include "mozilla/gfx/SharedDIBSurface.h"
|
|
|
|
|
|
|
|
using mozilla::gfx::SharedDIBSurface;
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace plugins {
|
|
|
|
|
|
|
|
PluginSurfaceParent::PluginSurfaceParent(const WindowsSharedMemoryHandle& handle,
|
|
|
|
const gfxIntSize& size,
|
|
|
|
bool transparent)
|
|
|
|
{
|
|
|
|
SharedDIBSurface* dibsurf = new SharedDIBSurface();
|
|
|
|
if (dibsurf->Attach(handle, size.width, size.height, transparent))
|
|
|
|
mSurface = dibsurf;
|
|
|
|
}
|
|
|
|
|
2013-09-24 13:45:14 -07:00
|
|
|
PluginSurfaceParent::~PluginSurfaceParent()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-05-02 11:44:13 -07:00
|
|
|
void
|
|
|
|
PluginSurfaceParent::ActorDestroy(ActorDestroyReason aWhy)
|
|
|
|
{
|
|
|
|
// Implement me! Bug 1005167
|
|
|
|
}
|
|
|
|
|
2011-01-27 14:37:00 -08:00
|
|
|
}
|
|
|
|
}
|