зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1435138 part 4. Remove nsIDOMSVGLength. r=qdot
MozReview-Commit-ID: HwKT9Bdby6F
This commit is contained in:
Родитель
3afbe4d699
Коммит
13dda50f75
|
@ -9,7 +9,6 @@ with Files("**"):
|
|||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIDOMSVGElement.idl',
|
||||
'nsIDOMSVGLength.idl',
|
||||
]
|
||||
|
||||
XPIDL_MODULE = 'dom_svg'
|
||||
|
|
|
@ -1,15 +0,0 @@
|
|||
/* -*- Mode: IDL; tab-width: 2; 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 "domstubs.idl"
|
||||
|
||||
[uuid(2596325c-aed0-487e-96a1-0a6d589b9c6b)]
|
||||
interface nsIDOMSVGLength : nsISupports
|
||||
{
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
|
@ -11,7 +11,6 @@
|
|||
#include "SVGAnimatedLengthList.h"
|
||||
#include "nsSVGElement.h"
|
||||
#include "nsSVGLength2.h"
|
||||
#include "nsIDOMSVGLength.h"
|
||||
#include "nsError.h"
|
||||
#include "nsMathUtils.h"
|
||||
#include "mozilla/dom/SVGLengthBinding.h"
|
||||
|
@ -57,7 +56,6 @@ NS_IMPL_CYCLE_COLLECTING_RELEASE(DOMSVGLength)
|
|||
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(DOMSVGLength)
|
||||
NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY
|
||||
NS_INTERFACE_MAP_ENTRY(mozilla::DOMSVGLength) // pseudo-interface
|
||||
NS_INTERFACE_MAP_ENTRY(nsIDOMSVGLength)
|
||||
NS_INTERFACE_MAP_ENTRY(nsISupports)
|
||||
NS_INTERFACE_MAP_END
|
||||
|
||||
|
|
|
@ -10,7 +10,6 @@
|
|||
#include "DOMSVGLengthList.h"
|
||||
#include "nsCycleCollectionParticipant.h"
|
||||
#include "nsDebug.h"
|
||||
#include "nsIDOMSVGLength.h"
|
||||
#include "nsTArray.h"
|
||||
#include "SVGLength.h"
|
||||
#include "mozilla/Attributes.h"
|
||||
|
@ -74,7 +73,7 @@ class ErrorResult;
|
|||
* if-else as appropriate. The bug for doing that work is:
|
||||
* https://bugzilla.mozilla.org/show_bug.cgi?id=571734
|
||||
*/
|
||||
class DOMSVGLength final : public nsIDOMSVGLength,
|
||||
class DOMSVGLength final : public nsISupports,
|
||||
public nsWrapperCache
|
||||
{
|
||||
friend class AutoChangeLengthNotifier;
|
||||
|
@ -90,7 +89,6 @@ public:
|
|||
NS_DECLARE_STATIC_IID_ACCESSOR(MOZILLA_DOMSVGLENGTH_IID)
|
||||
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
||||
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(DOMSVGLength)
|
||||
NS_DECL_NSIDOMSVGLENGTH
|
||||
|
||||
/**
|
||||
* Generic ctor for DOMSVGLength objects that are created for an attribute.
|
||||
|
|
|
@ -8,7 +8,6 @@
|
|||
#define MOZILLA_SVGLENGTH_H__
|
||||
|
||||
#include "nsDebug.h"
|
||||
#include "nsIDOMSVGLength.h"
|
||||
#include "nsMathUtils.h"
|
||||
#include "mozilla/FloatingPoint.h"
|
||||
#include "mozilla/dom/SVGLengthBinding.h"
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
/**
|
||||
* Global hashmap to associate internal SVG data types (e.g. nsSVGLength2) with
|
||||
* DOM tear-off objects (e.g. nsIDOMSVGLength). This allows us to always return
|
||||
* DOM tear-off objects (e.g. DOMSVGLength). This allows us to always return
|
||||
* the same object for subsequent requests for DOM objects.
|
||||
*
|
||||
* We don't keep an owning reference to the tear-off objects so they are
|
||||
|
|
|
@ -13,7 +13,6 @@
|
|||
#include "nsCoord.h"
|
||||
#include "nsCycleCollectionParticipant.h"
|
||||
#include "nsError.h"
|
||||
#include "nsIDOMSVGLength.h"
|
||||
#include "nsISMILAttr.h"
|
||||
#include "nsMathUtils.h"
|
||||
#include "nsSVGElement.h"
|
||||
|
|
|
@ -12,7 +12,6 @@
|
|||
#include "nsIContentViewer.h"
|
||||
#include "nsIDocument.h"
|
||||
#include "nsIDocumentLoaderFactory.h"
|
||||
#include "nsIDOMSVGLength.h"
|
||||
#include "nsIHttpChannel.h"
|
||||
#include "nsIObserverService.h"
|
||||
#include "nsIParser.h"
|
||||
|
|
|
@ -35,7 +35,6 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=790732
|
|||
is(Ci.nsIDOMHTMLMediaElement, HTMLMediaElement);
|
||||
is(Ci.nsIDOMOfflineResourceList, OfflineResourceList);
|
||||
is(Ci.nsIDOMRange, Range);
|
||||
is(Ci.nsIDOMSVGLength, SVGLength);
|
||||
is(Ci.nsIDOMNodeFilter, NodeFilter);
|
||||
is(Ci.nsIDOMXPathResult, XPathResult);
|
||||
</script>
|
||||
|
|
|
@ -25,7 +25,6 @@
|
|||
#include "nsCaret.h"
|
||||
#include "nsContentUtils.h"
|
||||
#include "nsGkAtoms.h"
|
||||
#include "nsIDOMSVGLength.h"
|
||||
#include "nsISelection.h"
|
||||
#include "nsQuickSort.h"
|
||||
#include "SVGObserverUtils.h"
|
||||
|
|
|
@ -59,7 +59,6 @@
|
|||
#include "nsIDOMSerializer.h"
|
||||
#include "nsIDOMSimpleGestureEvent.h"
|
||||
#include "nsIDOMSVGElement.h"
|
||||
#include "nsIDOMSVGLength.h"
|
||||
#include "nsIDOMText.h"
|
||||
#include "nsIDOMTimeEvent.h"
|
||||
#include "nsIDOMTimeRanges.h"
|
||||
|
@ -153,7 +152,6 @@
|
|||
#include "mozilla/dom/StyleSheetBinding.h"
|
||||
#include "mozilla/dom/StyleSheetListBinding.h"
|
||||
#include "mozilla/dom/SVGElementBinding.h"
|
||||
#include "mozilla/dom/SVGLengthBinding.h"
|
||||
#include "mozilla/dom/TextBinding.h"
|
||||
#include "mozilla/dom/TimeEventBinding.h"
|
||||
#include "mozilla/dom/TimeRangesBinding.h"
|
||||
|
@ -283,7 +281,6 @@ const ComponentsInterfaceShimEntry kComponentsInterfaceShimMap[] =
|
|||
DEFINE_SHIM_WITH_CUSTOM_INTERFACE(nsIDOMSerializer, XMLSerializer),
|
||||
DEFINE_SHIM(SimpleGestureEvent),
|
||||
DEFINE_SHIM(SVGElement),
|
||||
DEFINE_SHIM(SVGLength),
|
||||
DEFINE_SHIM(Text),
|
||||
DEFINE_SHIM(TimeEvent),
|
||||
DEFINE_SHIM(TimeRanges),
|
||||
|
|
Загрузка…
Ссылка в новой задаче