Bug 1444580: Devirtualize FindImageMap. r=smaug

MozReview-Commit-ID: 4J6Yc3vW1Vf
This commit is contained in:
Emilio Cobos Álvarez 2018-03-11 12:53:59 +01:00
parent 837af28813
commit cde280f7f4
3 changed files with 5 additions and 6 deletions

View File

@ -9797,7 +9797,7 @@ nsIDocument::SetNavigationTiming(nsDOMNavigationTiming* aTiming)
}
Element*
nsDocument::FindImageMap(const nsAString& aUseMapValue)
nsIDocument::FindImageMap(const nsAString& aUseMapValue)
{
if (aUseMapValue.IsEmpty()) {
return nullptr;

View File

@ -658,8 +658,6 @@ public:
virtual nsresult GetStateObject(nsIVariant** aResult) override;
virtual Element* FindImageMap(const nsAString& aNormalizedMapName) override;
// Returns the size of the mBlockedTrackingNodes array. (nsIDocument.h)
//
// This array contains nodes that have been blocked to prevent
@ -867,8 +865,6 @@ private:
// Set if we've found a URL for the current picture
nsString mPreloadPictureFoundSource;
RefPtr<nsContentList> mImageMaps;
nsCString mScrollToRef;
uint8_t mScrolledToRefAlready : 1;
uint8_t mChangeScrollPosWhenScrollingToRef : 1;

View File

@ -2798,7 +2798,7 @@ public:
void SetNavigationTiming(nsDOMNavigationTiming* aTiming);
virtual Element* FindImageMap(const nsAString& aNormalizedMapName) = 0;
Element* FindImageMap(const nsAString& aNormalizedMapName);
// Add aLink to the set of links that need their status resolved.
void RegisterPendingLinkUpdate(mozilla::dom::Link* aLink);
@ -4054,10 +4054,13 @@ protected:
RefPtr<mozilla::dom::DOMImplementation> mDOMImplementation;
RefPtr<nsContentList> mImageMaps;
public:
js::ExpandoAndGeneration mExpandoAndGeneration;
protected:
nsTArray<RefPtr<mozilla::StyleSheet>> mOnDemandBuiltInUASheets;
nsTArray<RefPtr<mozilla::StyleSheet>> mAdditionalSheets[AdditionalSheetTypeCount];