2017-10-27 20:33:53 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
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/. */
|
2009-04-25 03:17:43 +04:00
|
|
|
|
2013-11-18 18:29:47 +04:00
|
|
|
#ifndef __NS_SVGINNERSVGFRAME_H__
|
|
|
|
#define __NS_SVGINNERSVGFRAME_H__
|
|
|
|
|
2017-06-14 16:05:37 +03:00
|
|
|
#include "nsSVGViewportFrame.h"
|
2012-03-02 12:28:59 +04:00
|
|
|
|
2019-04-16 10:24:49 +03:00
|
|
|
namespace mozilla {
|
|
|
|
class PresShell;
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2017-04-30 18:30:08 +03:00
|
|
|
class nsSVGInnerSVGFrame final : public nsSVGViewportFrame {
|
2019-04-16 10:24:49 +03:00
|
|
|
friend nsIFrame* NS_NewSVGInnerSVGFrame(mozilla::PresShell* aPresShell,
|
2018-03-22 21:20:41 +03:00
|
|
|
ComputedStyle* aStyle);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2009-04-25 03:17:43 +04:00
|
|
|
protected:
|
2019-02-05 19:45:54 +03:00
|
|
|
explicit nsSVGInnerSVGFrame(ComputedStyle* aStyle,
|
|
|
|
nsPresContext* aPresContext)
|
|
|
|
: nsSVGViewportFrame(aStyle, aPresContext, kClassID) {}
|
2016-04-18 10:23:52 +03:00
|
|
|
|
2009-04-25 03:17:43 +04:00
|
|
|
public:
|
|
|
|
NS_DECL_QUERYFRAME
|
2017-05-26 13:11:11 +03:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS(nsSVGInnerSVGFrame)
|
2009-04-25 03:17:43 +04:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
2014-05-25 02:20:40 +04:00
|
|
|
virtual void Init(nsIContent* aContent, nsContainerFrame* aParent,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsIFrame* aPrevInFlow) override;
|
2009-04-25 03:17:43 +04:00
|
|
|
#endif
|
|
|
|
|
2014-01-06 03:31:14 +04:00
|
|
|
#ifdef DEBUG_FRAME_DUMP
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsresult GetFrameName(nsAString& aResult) const override {
|
2009-04-25 03:17:43 +04:00
|
|
|
return MakeFrameName(NS_LITERAL_STRING("SVGInnerSVG"), aResult);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
};
|
2013-11-18 18:29:47 +04:00
|
|
|
|
|
|
|
#endif
|