Bug 1041926 - Remove NS_HIDDEN introduced by selection carets. r=roc

Bug 1015664 had removed almost all NS_HIDDEN in gecko. Selection carets
must be landed after it.
This commit is contained in:
Ting-Yu Lin 2014-07-22 00:35:00 -04:00
parent 8c620b753c
commit 7063a3388c
2 changed files with 6 additions and 6 deletions

View File

@ -772,17 +772,17 @@ public:
/**
* Get the selection caret, if it exists. AddRefs it.
*/
virtual NS_HIDDEN_(already_AddRefed<mozilla::SelectionCarets>) GetSelectionCarets() const = 0;
virtual already_AddRefed<mozilla::SelectionCarets> GetSelectionCarets() const = 0;
/**
* Returns the start part of selection caret element of the presshell.
*/
virtual NS_HIDDEN_(mozilla::dom::Element*) GetSelectionCaretsStartElement() const = 0;
virtual mozilla::dom::Element* GetSelectionCaretsStartElement() const = 0;
/**
* Returns the end part of selection caret element of the presshell.
*/
virtual NS_HIDDEN_(mozilla::dom::Element*) GetSelectionCaretsEndElement() const = 0;
virtual mozilla::dom::Element* GetSelectionCaretsEndElement() const = 0;
/**
* Get the caret, if it exists. AddRefs it.

View File

@ -224,9 +224,9 @@ public:
virtual void SetMayHaveTouchCaret(bool aSet) MOZ_OVERRIDE;
virtual bool MayHaveTouchCaret() MOZ_OVERRIDE;
// selection caret
virtual NS_HIDDEN_(already_AddRefed<mozilla::SelectionCarets>) GetSelectionCarets() const MOZ_OVERRIDE;
virtual NS_HIDDEN_(mozilla::dom::Element*) GetSelectionCaretsStartElement() const MOZ_OVERRIDE;
virtual NS_HIDDEN_(mozilla::dom::Element*) GetSelectionCaretsEndElement() const MOZ_OVERRIDE;
virtual already_AddRefed<mozilla::SelectionCarets> GetSelectionCarets() const MOZ_OVERRIDE;
virtual mozilla::dom::Element* GetSelectionCaretsStartElement() const MOZ_OVERRIDE;
virtual mozilla::dom::Element* GetSelectionCaretsEndElement() const MOZ_OVERRIDE;
// caret handling
virtual already_AddRefed<nsCaret> GetCaret() const MOZ_OVERRIDE;
virtual void MaybeInvalidateCaretPosition() MOZ_OVERRIDE;