mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-27 15:55:16 +00:00
12 lines
285 B
C
12 lines
285 B
C
#ifndef NSFRAMETRAVERSAL_H
|
|
#define NSFRAMETRAVERSAL_H
|
|
|
|
#include "nsIEnumerator.h"
|
|
#include "nsIFrame.h"
|
|
|
|
enum nsTraversalType{LEAF, EXTENSIVE, FASTEST};
|
|
nsresult NS_NewFrameTraversal(nsIEnumerator **aEnumerator, nsTraversalType aType, nsIFrame *aStart);
|
|
|
|
|
|
#endif //NSFRAMETRAVERSAL_H
|