gecko-dev/dom/plugins/ipc/PluginSurfaceParent.cpp
Nicholas Nethercote 842dd1cf5a Bug 1207741 - Remove gfxIntSize. r=nical.
gfxIntSize is just a typedef of gfx::IntSize, so this is very mechanical. The
only tricky part is deciding for each occurrence whether to replace it with
IntSize, gfx::IntSize or mozilla::gfx::IntSize; in all cases I went with the
shortest one that worked given the existing "using namespace" declarations.

--HG--
extra : rebase_source : 67fd15f87222b16defa70ef795c6d77dfacf1c36
2015-09-23 11:49:05 -07:00

35 lines
971 B
C++

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* 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/. */
#include "mozilla/plugins/PluginSurfaceParent.h"
#include "mozilla/gfx/SharedDIBSurface.h"
using mozilla::gfx::SharedDIBSurface;
namespace mozilla {
namespace plugins {
PluginSurfaceParent::PluginSurfaceParent(const WindowsSharedMemoryHandle& handle,
const gfx::IntSize& size,
bool transparent)
{
SharedDIBSurface* dibsurf = new SharedDIBSurface();
if (dibsurf->Attach(handle, size.width, size.height, transparent))
mSurface = dibsurf;
}
PluginSurfaceParent::~PluginSurfaceParent()
{
}
void
PluginSurfaceParent::ActorDestroy(ActorDestroyReason aWhy)
{
// Implement me! Bug 1005167
}
}
}