Bug 526394. Part 28: Remove nsIScrollableFrame::GetScrollableView. r=mats

This commit is contained in:
Robert O'Callahan 2009-09-16 12:11:40 +12:00
Родитель 46e847c176
Коммит e1cb17b65b
2 изменённых файлов: 0 добавлений и 10 удалений

Просмотреть файл

@ -433,9 +433,6 @@ public:
virtual void CurPosAttributeChanged(nsIContent* aChild) {
mInner.CurPosAttributeChanged(aChild);
}
virtual nsIScrollableView* GetScrollableView() {
return mInner.GetScrollableView();
}
// nsIStatefulFrame
NS_IMETHOD SaveState(SpecialStateID aStateID, nsPresState** aState) {
@ -671,9 +668,6 @@ public:
virtual void CurPosAttributeChanged(nsIContent* aChild) {
mInner.CurPosAttributeChanged(aChild);
}
virtual nsIScrollableView* GetScrollableView() {
return mInner.GetScrollableView();
}
// nsIStatefulFrame
NS_IMETHOD SaveState(SpecialStateID aStateID, nsPresState** aState) {

Просмотреть файл

@ -49,7 +49,6 @@
class nsBoxLayoutState;
class nsIScrollPositionListener;
class nsIScrollableView;
/**
* Interface for frames that are scrollable. This interface exposes
@ -195,9 +194,6 @@ public:
* after being restored from history.
*/
NS_IMETHOD PostScrolledAreaEventForCurrentArea() = 0;
// OBSOLETE, will remove
virtual nsIScrollableView* GetScrollableView() = 0;
};
#endif