2001-09-29 00:14:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04: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/. */
|
2006-03-29 22:29:03 +04:00
|
|
|
|
|
|
|
/* rendering objects for replaced elements implemented by a plugin */
|
|
|
|
|
2000-04-15 02:48:30 +04:00
|
|
|
#ifndef nsObjectFrame_h___
|
|
|
|
#define nsObjectFrame_h___
|
|
|
|
|
2012-09-14 20:10:08 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2001-02-20 00:50:04 +03:00
|
|
|
#include "nsIObjectFrame.h"
|
2006-02-02 22:29:10 +03:00
|
|
|
#include "nsFrame.h"
|
2009-07-22 04:45:00 +04:00
|
|
|
#include "nsRegion.h"
|
|
|
|
#include "nsDisplayList.h"
|
2010-09-08 04:36:59 +04:00
|
|
|
#include "nsIReflowCallback.h"
|
2000-04-15 02:48:30 +04:00
|
|
|
|
2013-08-22 22:32:52 +04:00
|
|
|
#ifdef XP_WIN
|
|
|
|
#include <windows.h> // For HWND :(
|
|
|
|
#endif
|
|
|
|
|
2006-02-02 22:29:10 +03:00
|
|
|
class nsPresContext;
|
2012-08-17 08:25:19 +04:00
|
|
|
class nsRootPresContext;
|
2009-07-22 04:45:00 +04:00
|
|
|
class nsDisplayPlugin;
|
2011-02-12 19:09:03 +03:00
|
|
|
class nsIOSurface;
|
2011-02-17 01:43:30 +03:00
|
|
|
class PluginBackgroundSink;
|
2013-08-22 22:32:52 +04:00
|
|
|
class nsPluginInstanceOwner;
|
2000-04-15 02:48:30 +04:00
|
|
|
|
2012-07-31 04:42:26 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace layers {
|
|
|
|
class ImageContainer;
|
|
|
|
class Layer;
|
|
|
|
class LayerManager;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-12-31 03:25:36 +03:00
|
|
|
#define nsObjectFrameSuper nsFrame
|
2000-04-15 02:48:30 +04:00
|
|
|
|
2010-09-08 04:36:59 +04:00
|
|
|
class nsObjectFrame : public nsObjectFrameSuper,
|
|
|
|
public nsIObjectFrame,
|
|
|
|
public nsIReflowCallback {
|
2000-04-15 02:48:30 +04:00
|
|
|
public:
|
2010-09-17 08:09:25 +04:00
|
|
|
typedef mozilla::LayerState LayerState;
|
|
|
|
typedef mozilla::layers::Layer Layer;
|
|
|
|
typedef mozilla::layers::LayerManager LayerManager;
|
|
|
|
typedef mozilla::layers::ImageContainer ImageContainer;
|
2013-09-27 10:01:16 +04:00
|
|
|
typedef mozilla::ContainerLayerParameters ContainerLayerParameters;
|
2010-09-17 08:09:25 +04:00
|
|
|
|
2009-09-12 20:49:24 +04:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
|
2006-03-27 01:30:36 +04:00
|
|
|
friend nsIFrame* NS_NewObjectFrame(nsIPresShell* aPresShell, nsStyleContext* aContext);
|
|
|
|
|
2009-01-12 22:20:59 +03:00
|
|
|
NS_DECL_QUERYFRAME
|
2012-09-29 01:53:44 +04:00
|
|
|
NS_DECL_QUERYFRAME_TARGET(nsObjectFrame)
|
2001-02-20 00:50:04 +03:00
|
|
|
|
2013-03-20 05:47:48 +04:00
|
|
|
virtual void Init(nsIContent* aContent,
|
|
|
|
nsIFrame* aParent,
|
|
|
|
nsIFrame* aPrevInFlow) MOZ_OVERRIDE;
|
2011-04-08 05:04:40 +04:00
|
|
|
virtual nscoord GetMinWidth(nsRenderingContext *aRenderingContext);
|
|
|
|
virtual nscoord GetPrefWidth(nsRenderingContext *aRenderingContext);
|
2005-01-05 03:21:06 +03:00
|
|
|
NS_IMETHOD Reflow(nsPresContext* aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
2000-04-15 02:48:30 +04:00
|
|
|
const nsHTMLReflowState& aReflowState,
|
2005-01-05 03:21:06 +03:00
|
|
|
nsReflowStatus& aStatus);
|
|
|
|
NS_IMETHOD DidReflow(nsPresContext* aPresContext,
|
|
|
|
const nsHTMLReflowState* aReflowState,
|
|
|
|
nsDidReflowStatus aStatus);
|
2013-02-14 15:12:27 +04:00
|
|
|
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists) MOZ_OVERRIDE;
|
2006-01-26 05:29:17 +03:00
|
|
|
|
2004-08-01 03:15:21 +04:00
|
|
|
NS_IMETHOD HandleEvent(nsPresContext* aPresContext,
|
2013-10-02 07:46:03 +04:00
|
|
|
mozilla::WidgetGUIEvent* aEvent,
|
2005-01-05 03:21:06 +03:00
|
|
|
nsEventStatus* aEventStatus);
|
2000-04-15 02:48:30 +04:00
|
|
|
|
2003-10-31 23:19:18 +03:00
|
|
|
virtual nsIAtom* GetType() const;
|
2007-02-24 21:33:33 +03:00
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
virtual bool IsFrameOfType(uint32_t aFlags) const
|
2007-02-24 21:33:33 +03:00
|
|
|
{
|
|
|
|
return nsObjectFrameSuper::IsFrameOfType(aFlags & ~(nsIFrame::eReplaced));
|
|
|
|
}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
virtual bool NeedsView() { return true; }
|
2003-04-10 21:22:24 +04:00
|
|
|
|
2014-01-06 03:31:14 +04:00
|
|
|
#ifdef DEBUG_FRAME_DUMP
|
2001-11-14 04:33:42 +03:00
|
|
|
NS_IMETHOD GetFrameName(nsAString& aResult) const;
|
2000-04-15 02:48:30 +04:00
|
|
|
#endif
|
|
|
|
|
2009-12-24 08:21:15 +03:00
|
|
|
virtual void DestroyFrom(nsIFrame* aDestructRoot);
|
2000-04-15 02:48:30 +04:00
|
|
|
|
2008-10-26 13:11:34 +03:00
|
|
|
virtual void DidSetStyleContext(nsStyleContext* aOldStyleContext);
|
2007-10-19 07:41:07 +04:00
|
|
|
|
2013-05-29 23:37:49 +04:00
|
|
|
NS_METHOD GetPluginInstance(nsNPAPIPluginInstance** aPluginInstance) MOZ_OVERRIDE;
|
2001-02-20 00:50:04 +03:00
|
|
|
|
2012-09-14 20:10:08 +04:00
|
|
|
virtual void SetIsDocumentActive(bool aIsActive) MOZ_OVERRIDE;
|
2011-08-30 10:09:56 +04:00
|
|
|
|
2011-04-08 23:58:04 +04:00
|
|
|
NS_IMETHOD GetCursor(const nsPoint& aPoint, nsIFrame::Cursor& aCursor);
|
2002-01-26 03:39:43 +03:00
|
|
|
|
2012-10-06 17:03:23 +04:00
|
|
|
// APIs used by nsRootPresContext to set up the widget position/size/clip
|
|
|
|
// region.
|
|
|
|
/**
|
|
|
|
* Set the next widget configuration for the plugin to the desired
|
|
|
|
* position of the plugin's widget, on the assumption that it is not visible
|
|
|
|
* (clipped out or covered by opaque content).
|
|
|
|
* This will only be called for plugins which have been registered
|
|
|
|
* with the root pres context for geometry updates.
|
|
|
|
* If there is no widget associated with the plugin, this will have no effect.
|
|
|
|
*/
|
|
|
|
void SetEmptyWidgetConfiguration()
|
|
|
|
{
|
|
|
|
mNextConfigurationBounds = nsIntRect(0,0,0,0);
|
|
|
|
mNextConfigurationClipRegion.Clear();
|
2009-07-22 04:45:00 +04:00
|
|
|
}
|
2012-10-06 17:03:23 +04:00
|
|
|
/**
|
|
|
|
* Append the desired widget configuration to aConfigurations.
|
|
|
|
*/
|
|
|
|
void GetWidgetConfiguration(nsTArray<nsIWidget::Configuration>* aConfigurations)
|
|
|
|
{
|
|
|
|
if (mWidget) {
|
2012-10-17 08:51:57 +04:00
|
|
|
if (!mWidget->GetParent()) {
|
|
|
|
// Plugin widgets should not be toplevel except when they're out of the
|
|
|
|
// document, in which case the plugin should not be registered for
|
|
|
|
// geometry updates and this should not be called. But apparently we
|
|
|
|
// have bugs where mWidget sometimes is toplevel here. Bail out.
|
|
|
|
NS_ERROR("Plugin widgets registered for geometry updates should not be toplevel");
|
|
|
|
return;
|
|
|
|
}
|
2012-10-06 17:03:23 +04:00
|
|
|
nsIWidget::Configuration* configuration = aConfigurations->AppendElement();
|
|
|
|
configuration->mChild = mWidget;
|
|
|
|
configuration->mBounds = mNextConfigurationBounds;
|
|
|
|
configuration->mClipRegion = mNextConfigurationClipRegion;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Called after all widget position/size/clip regions have been changed
|
|
|
|
* (even if there isn't a widget for this plugin).
|
|
|
|
*/
|
2009-07-22 04:45:02 +04:00
|
|
|
void DidSetWidgetGeometry();
|
|
|
|
|
2002-05-11 02:34:53 +04:00
|
|
|
// accessibility support
|
|
|
|
#ifdef ACCESSIBILITY
|
2012-09-29 01:53:44 +04:00
|
|
|
virtual mozilla::a11y::AccType AccessibleType() MOZ_OVERRIDE;
|
2002-05-11 02:34:53 +04:00
|
|
|
#ifdef XP_WIN
|
|
|
|
NS_IMETHOD GetPluginPort(HWND *aPort);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2000-04-15 02:48:30 +04:00
|
|
|
//local methods
|
2012-02-01 01:55:54 +04:00
|
|
|
nsresult PrepForDrawing(nsIWidget *aWidget);
|
2005-01-05 03:21:06 +03:00
|
|
|
|
2001-09-18 06:11:09 +04:00
|
|
|
// for a given aRoot, this walks the frame tree looking for the next outFrame
|
2004-08-01 03:15:21 +04:00
|
|
|
static nsIObjectFrame* GetNextObjectFrame(nsPresContext* aPresContext,
|
2004-02-09 20:33:45 +03:00
|
|
|
nsIFrame* aRoot);
|
2001-09-18 06:11:09 +04:00
|
|
|
|
2010-09-08 04:36:59 +04:00
|
|
|
// nsIReflowCallback
|
2012-09-14 20:10:08 +04:00
|
|
|
virtual bool ReflowFinished() MOZ_OVERRIDE;
|
|
|
|
virtual void ReflowCallbackCanceled() MOZ_OVERRIDE;
|
2010-09-08 04:36:59 +04:00
|
|
|
|
2011-02-17 01:43:30 +03:00
|
|
|
/**
|
|
|
|
* Builds either an ImageLayer or a ReadbackLayer, depending on the type
|
|
|
|
* of aItem (TYPE_PLUGIN or TYPE_PLUGIN_READBACK respectively).
|
|
|
|
*/
|
2010-09-17 08:09:25 +04:00
|
|
|
already_AddRefed<Layer> BuildLayer(nsDisplayListBuilder* aBuilder,
|
|
|
|
LayerManager* aManager,
|
2012-09-17 02:25:33 +04:00
|
|
|
nsDisplayItem* aItem,
|
2013-09-27 10:01:16 +04:00
|
|
|
const ContainerLayerParameters& aContainerParameters);
|
2010-09-17 08:09:25 +04:00
|
|
|
|
2012-05-03 18:05:55 +04:00
|
|
|
LayerState GetLayerState(nsDisplayListBuilder* aBuilder,
|
|
|
|
LayerManager* aManager);
|
2010-09-17 08:09:25 +04:00
|
|
|
|
2011-02-23 08:38:09 +03:00
|
|
|
/**
|
|
|
|
* Get the rectangle (relative to this frame) which it will paint. Normally
|
|
|
|
* the frame's content-box but may be smaller if the plugin is rendering
|
|
|
|
* asynchronously and has a different-sized image temporarily.
|
|
|
|
*/
|
|
|
|
nsRect GetPaintedRect(nsDisplayPlugin* aItem);
|
2010-09-17 08:09:25 +04:00
|
|
|
|
2010-09-18 15:28:49 +04:00
|
|
|
/**
|
|
|
|
* If aContent has a nsObjectFrame, then prepare it for a DocShell swap.
|
|
|
|
* @see nsSubDocumentFrame::BeginSwapDocShells.
|
|
|
|
* There will be a call to EndSwapDocShells after we were moved to the
|
|
|
|
* new view tree.
|
|
|
|
*/
|
|
|
|
static void BeginSwapDocShells(nsIContent* aContent, void*);
|
|
|
|
/**
|
|
|
|
* If aContent has a nsObjectFrame, then set it up after a DocShell swap.
|
|
|
|
* @see nsSubDocumentFrame::EndSwapDocShells.
|
|
|
|
*/
|
|
|
|
static void EndSwapDocShells(nsIContent* aContent, void*);
|
|
|
|
|
2012-09-14 20:10:08 +04:00
|
|
|
nsIWidget* GetWidget() MOZ_OVERRIDE { return mInnerView ? mWidget : nullptr; }
|
2011-04-01 01:33:46 +04:00
|
|
|
|
2011-08-30 10:09:56 +04:00
|
|
|
/**
|
|
|
|
* Adjust the plugin's idea of its size, using aSize as its new size.
|
|
|
|
* (aSize must be in twips)
|
|
|
|
*/
|
|
|
|
void FixupWindow(const nsSize& aSize);
|
|
|
|
|
2012-02-01 01:55:54 +04:00
|
|
|
/*
|
2011-08-30 10:09:56 +04:00
|
|
|
* Sets up the plugin window and calls SetWindow on the plugin.
|
|
|
|
*/
|
2011-09-29 10:19:26 +04:00
|
|
|
nsresult CallSetWindow(bool aCheckIsHidden = true);
|
2011-08-30 10:09:56 +04:00
|
|
|
|
2012-02-01 01:55:54 +04:00
|
|
|
void SetInstanceOwner(nsPluginInstanceOwner* aOwner);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
nsObjectFrame(nsStyleContext* aContext);
|
|
|
|
virtual ~nsObjectFrame();
|
|
|
|
|
|
|
|
// NOTE: This frame class does not inherit from |nsLeafFrame|, so
|
|
|
|
// this is not a virtual method implementation.
|
|
|
|
void GetDesiredSize(nsPresContext* aPresContext,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize);
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
bool IsFocusable(int32_t *aTabIndex = nullptr, bool aWithMouse = false);
|
2005-03-31 05:38:04 +04:00
|
|
|
|
2002-04-13 05:53:23 +04:00
|
|
|
// check attributes and optionally CSS to see if we should display anything
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsHidden(bool aCheckVisibilityStyle = true) const;
|
2000-07-20 03:46:43 +04:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsOpaque() const;
|
|
|
|
bool IsTransparentMode() const;
|
2012-10-06 17:03:23 +04:00
|
|
|
bool IsPaintedByGecko() const;
|
2009-07-22 04:45:00 +04:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
nsIntPoint GetWindowOriginInPixels(bool aWindowless);
|
2001-12-22 03:00:44 +03:00
|
|
|
|
2008-07-07 06:49:38 +04:00
|
|
|
static void PaintPrintPlugin(nsIFrame* aFrame,
|
2011-04-08 05:04:40 +04:00
|
|
|
nsRenderingContext* aRenderingContext,
|
2008-07-07 06:49:38 +04:00
|
|
|
const nsRect& aDirtyRect, nsPoint aPt);
|
2011-04-08 05:04:40 +04:00
|
|
|
void PrintPlugin(nsRenderingContext& aRenderingContext,
|
2008-07-07 06:49:38 +04:00
|
|
|
const nsRect& aDirtyRect);
|
2010-10-25 18:38:09 +04:00
|
|
|
void PaintPlugin(nsDisplayListBuilder* aBuilder,
|
2011-04-08 05:04:40 +04:00
|
|
|
nsRenderingContext& aRenderingContext,
|
2009-09-11 05:44:20 +04:00
|
|
|
const nsRect& aDirtyRect, const nsRect& aPluginRect);
|
2008-07-07 06:49:38 +04:00
|
|
|
|
2010-01-21 18:17:52 +03:00
|
|
|
void NotifyPluginReflowObservers();
|
2009-11-21 01:59:27 +03:00
|
|
|
|
2003-04-12 19:03:08 +04:00
|
|
|
friend class nsPluginInstanceOwner;
|
2009-07-22 04:45:00 +04:00
|
|
|
friend class nsDisplayPlugin;
|
2011-02-17 01:43:30 +03:00
|
|
|
friend class PluginBackgroundSink;
|
2009-07-22 04:45:00 +04:00
|
|
|
|
2000-04-15 02:48:30 +04:00
|
|
|
private:
|
2012-08-17 08:25:19 +04:00
|
|
|
// Registers the plugin for a geometry update, and requests a geometry
|
|
|
|
// update. This caches the root pres context in
|
|
|
|
// mRootPresContextRegisteredWith, so that we can be sure we unregister
|
|
|
|
// from the right root prest context in UnregisterPluginForGeometryUpdates.
|
|
|
|
void RegisterPluginForGeometryUpdates();
|
|
|
|
|
|
|
|
// Unregisters the plugin for geometry updated with the root pres context
|
|
|
|
// stored in mRootPresContextRegisteredWith.
|
|
|
|
void UnregisterPluginForGeometryUpdates();
|
|
|
|
|
2010-01-21 18:17:52 +03:00
|
|
|
class PluginEventNotifier : public nsRunnable {
|
|
|
|
public:
|
|
|
|
PluginEventNotifier(const nsString &aEventType) :
|
|
|
|
mEventType(aEventType) {}
|
|
|
|
|
2013-05-29 23:37:49 +04:00
|
|
|
NS_IMETHOD Run() MOZ_OVERRIDE;
|
2010-01-21 18:17:52 +03:00
|
|
|
private:
|
|
|
|
nsString mEventType;
|
|
|
|
};
|
2012-02-01 01:55:54 +04:00
|
|
|
|
|
|
|
nsPluginInstanceOwner* mInstanceOwner; // WEAK
|
2013-01-03 17:23:11 +04:00
|
|
|
nsView* mInnerView;
|
2009-07-22 04:45:00 +04:00
|
|
|
nsCOMPtr<nsIWidget> mWidget;
|
2009-01-15 06:27:09 +03:00
|
|
|
nsIntRect mWindowlessRect;
|
2011-02-17 01:43:30 +03:00
|
|
|
/**
|
|
|
|
* This is owned by the ReadbackLayer for this nsObjectFrame. It is
|
|
|
|
* automatically cleared if the PluginBackgroundSink is destroyed.
|
|
|
|
*/
|
|
|
|
PluginBackgroundSink* mBackgroundSink;
|
2005-04-15 01:50:46 +04:00
|
|
|
|
2012-10-06 17:03:23 +04:00
|
|
|
/**
|
|
|
|
* Bounds that we should set the plugin's widget to in the next composite,
|
|
|
|
* for plugins with widgets. For plugins without widgets, bounds in device
|
|
|
|
* pixels relative to the nearest frame that's a display list reference frame.
|
|
|
|
*/
|
|
|
|
nsIntRect mNextConfigurationBounds;
|
|
|
|
/**
|
|
|
|
* Clip region that we should set the plugin's widget to
|
|
|
|
* in the next composite. Only meaningful for plugins with widgets.
|
|
|
|
*/
|
|
|
|
nsTArray<nsIntRect> mNextConfigurationClipRegion;
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mReflowCallbackPosted;
|
2010-09-17 08:09:25 +04:00
|
|
|
|
2012-08-17 08:25:19 +04:00
|
|
|
// We keep this reference to ensure we can always unregister the
|
|
|
|
// plugins we register on the root PresContext.
|
|
|
|
// This is only non-null while we have a plugin registered for geometry
|
|
|
|
// updates.
|
|
|
|
nsRefPtr<nsRootPresContext> mRootPresContextRegisteredWith;
|
2000-04-15 02:48:30 +04:00
|
|
|
};
|
|
|
|
|
2009-07-22 04:45:00 +04:00
|
|
|
class nsDisplayPlugin : public nsDisplayItem {
|
|
|
|
public:
|
2010-08-13 14:01:13 +04:00
|
|
|
nsDisplayPlugin(nsDisplayListBuilder* aBuilder, nsIFrame* aFrame)
|
|
|
|
: nsDisplayItem(aBuilder, aFrame)
|
2009-07-22 04:45:00 +04:00
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(nsDisplayPlugin);
|
2012-10-18 09:34:58 +04:00
|
|
|
aBuilder->SetContainsPluginItem();
|
2009-07-22 04:45:00 +04:00
|
|
|
}
|
|
|
|
#ifdef NS_BUILD_REFCNT_LOGGING
|
|
|
|
virtual ~nsDisplayPlugin() {
|
|
|
|
MOZ_COUNT_DTOR(nsDisplayPlugin);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-09-14 20:10:08 +04:00
|
|
|
virtual nsRect GetBounds(nsDisplayListBuilder* aBuilder, bool* aSnap) MOZ_OVERRIDE;
|
2011-01-03 04:48:09 +03:00
|
|
|
virtual nsRegion GetOpaqueRegion(nsDisplayListBuilder* aBuilder,
|
2012-09-14 20:10:08 +04:00
|
|
|
bool* aSnap) MOZ_OVERRIDE;
|
2009-09-07 04:35:14 +04:00
|
|
|
virtual void Paint(nsDisplayListBuilder* aBuilder,
|
2012-09-14 20:10:08 +04:00
|
|
|
nsRenderingContext* aCtx) MOZ_OVERRIDE;
|
2011-09-29 10:19:26 +04:00
|
|
|
virtual bool ComputeVisibility(nsDisplayListBuilder* aBuilder,
|
2011-01-28 01:58:50 +03:00
|
|
|
nsRegion* aVisibleRegion,
|
2012-09-14 20:10:08 +04:00
|
|
|
const nsRect& aAllowVisibleRegionExpansion) MOZ_OVERRIDE;
|
2009-07-22 04:45:00 +04:00
|
|
|
|
2010-07-16 01:07:49 +04:00
|
|
|
NS_DISPLAY_DECL_NAME("Plugin", TYPE_PLUGIN)
|
2009-07-22 04:45:00 +04:00
|
|
|
|
2010-09-17 08:09:25 +04:00
|
|
|
virtual already_AddRefed<Layer> BuildLayer(nsDisplayListBuilder* aBuilder,
|
2011-06-22 16:11:27 +04:00
|
|
|
LayerManager* aManager,
|
2013-09-27 10:01:16 +04:00
|
|
|
const ContainerLayerParameters& aContainerParameters) MOZ_OVERRIDE
|
2010-09-17 08:09:25 +04:00
|
|
|
{
|
2011-02-12 19:09:03 +03:00
|
|
|
return static_cast<nsObjectFrame*>(mFrame)->BuildLayer(aBuilder,
|
|
|
|
aManager,
|
2012-09-17 02:25:33 +04:00
|
|
|
this,
|
|
|
|
aContainerParameters);
|
2010-09-17 08:09:25 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual LayerState GetLayerState(nsDisplayListBuilder* aBuilder,
|
2012-05-03 18:05:55 +04:00
|
|
|
LayerManager* aManager,
|
2013-09-27 10:01:16 +04:00
|
|
|
const ContainerLayerParameters& aParameters) MOZ_OVERRIDE
|
2010-09-17 08:09:25 +04:00
|
|
|
{
|
2011-02-17 01:43:30 +03:00
|
|
|
return static_cast<nsObjectFrame*>(mFrame)->GetLayerState(aBuilder,
|
|
|
|
aManager);
|
2010-09-17 08:09:25 +04:00
|
|
|
}
|
2009-07-22 04:45:00 +04:00
|
|
|
};
|
2000-04-15 02:48:30 +04:00
|
|
|
|
|
|
|
#endif /* nsObjectFrame_h___ */
|