Changeset 433 for trunk/WebCore/html/HTMLObjectElement.h
- Timestamp:
- 08/08/08 14:23:27 (5 months ago)
- Files:
-
- trunk/WebCore/html/HTMLObjectElement.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/WebCore/html/HTMLObjectElement.h
r370 r433 24 24 #define HTMLObjectElement_h 25 25 26 #include "HTMLPlugInElement.h" 27 #include <wtf/OwnPtr.h> 26 #include "HTMLPlugInImageElement.h" 28 27 29 28 namespace WebCore { 30 29 31 class HTMLImageLoader;32 30 class KURL; 33 31 34 class HTMLObjectElement : public HTMLPlugIn Element {32 class HTMLObjectElement : public HTMLPlugInImageElement { 35 33 public: 36 34 HTMLObjectElement(Document*, bool createdByParser); … … 59 57 void setNeedWidgetUpdate(bool needWidgetUpdate) { m_needWidgetUpdate = needWidgetUpdate; } 60 58 61 bool isImageType();62 63 59 void renderFallbackContent(); 64 60 65 61 #if USE(JAVASCRIPTCORE_BINDINGS) 66 virtual KJS::Bindings::Instance* getInstance() const;62 virtual RenderWidget* renderWidgetForJSBindings() const; 67 63 #endif 68 64 … … 106 102 107 103 const String& classId() const { return m_classId; } 108 const String& url() const { return m_url; }109 const String& serviceType() const { return m_serviceType; }110 104 111 105 bool containsJavaApplet() const; … … 117 111 118 112 AtomicString m_id; 119 String m_serviceType;120 String m_url;121 113 String m_classId; 122 114 bool m_docNamedItem : 1; 123 115 bool m_needWidgetUpdate : 1; 124 116 bool m_useFallbackContent : 1; 125 OwnPtr<HTMLImageLoader> m_imageLoader;126 117 }; 127 118
