summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/platform/mac/HTMLConverter.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/platform/mac/HTMLConverter.h')
-rw-r--r--Source/WebCore/platform/mac/HTMLConverter.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/Source/WebCore/platform/mac/HTMLConverter.h b/Source/WebCore/platform/mac/HTMLConverter.h
index 645c1d7..3250769 100644
--- a/Source/WebCore/platform/mac/HTMLConverter.h
+++ b/Source/WebCore/platform/mac/HTMLConverter.h
@@ -23,12 +23,12 @@
* THE POSSIBILITY OF SUCH DAMAGE.
*/
-#import "DOM.h"
-#import "DOMDocument.h"
-#import "DOMRange.h"
+@class DOMDocument;
+@class DOMRange;
namespace WebCore {
-class DocumentLoader;
+ class DocumentLoader;
+ class Range;
}
@interface WebHTMLConverter : NSObject {
@@ -79,10 +79,13 @@ class DocumentLoader;
} _flags;
}
+#if !defined(BUILDING_ON_TIGER) && !defined(BUILDING_ON_LEOPARD)
- (id)init;
- (id)initWithDOMRange:(DOMRange *)domRange;
- (NSAttributedString *)attributedString;
+#endif
++ (NSAttributedString *)editingAttributedStringFromRange:(WebCore::Range*)range;
@end