Changeset 19737 for trunk/WebCore/html/HTMLDocument.h
- Timestamp:
- 02/20/07 10:18:39 (23 months ago)
- Files:
-
- 1 modified
-
trunk/WebCore/html/HTMLDocument.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/html/HTMLDocument.h
r16440 r19737 1 1 /* 2 * This file is part of the DOM implementation for KDE.3 *4 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 5 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 6 * Copyright (C) 2004, 2006 Apple Computer, Inc.4 * Copyright (C) 2004, 2006, 2007 Apple Inc. All rights reserved. 7 5 * 8 6 * This library is free software; you can redistribute it and/or … … 28 26 #include "CachedResourceClient.h" 29 27 #include "Document.h" 30 #include "HTMLCollection.h"31 28 32 29 namespace WebCore { … … 35 32 class HTMLElement; 36 33 37 class HTMLDocument : public Document, public CachedResourceClient 38 { 34 class HTMLDocument : public Document, public CachedResourceClient { 39 35 public: 40 36 HTMLDocument(DOMImplementation*, FrameView* = 0); 41 ~HTMLDocument();37 virtual ~HTMLDocument(); 42 38 43 39 virtual bool isHTMLDocument() const { return true; } … … 66 62 67 63 typedef HashMap<StringImpl*, int> NameCountMap; 68 69 protected:70 HTMLElement* bodyElement;71 HTMLElement* htmlElement;72 64 73 65 private: