Changeset 15286 for trunk/WebCore/html/HTMLDocument.h
- Timestamp:
- 07/09/06 22:20:17 (3 years ago)
- Files:
-
- 1 modified
-
trunk/WebCore/html/HTMLDocument.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/html/HTMLDocument.h
r15269 r15286 30 30 #include "HTMLCollection.h" 31 31 32 class DeprecatedString;33 34 32 namespace WebCore { 35 33 34 class DeprecatedString; 36 35 class FrameView; 37 36 class HTMLElement; 38 37 39 class HTMLDocument : public WebCore::Document, public WebCore::CachedResourceClient38 class HTMLDocument : public Document, public CachedResourceClient 40 39 { 41 40 public: 42 HTMLDocument(DOMImplementation *_implementation, FrameView *v= 0);41 HTMLDocument(DOMImplementation*, FrameView* = 0); 43 42 ~HTMLDocument(); 44 43 … … 49 48 void setCookie(const String&); 50 49 51 void setBody(HTMLElement*, ExceptionCode& ec);50 void setBody(HTMLElement*, ExceptionCode&); 52 51 53 52 virtual Tokenizer* createTokenizer(); … … 78 77 }; 79 78 80 } // namespace79 } // namespace 81 80 82 81 #endif