summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/webkit/WebCore/html/HTMLAppletElement.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/webkit/WebCore/html/HTMLAppletElement.h')
-rw-r--r--src/3rdparty/webkit/WebCore/html/HTMLAppletElement.h32
1 files changed, 8 insertions, 24 deletions
diff --git a/src/3rdparty/webkit/WebCore/html/HTMLAppletElement.h b/src/3rdparty/webkit/WebCore/html/HTMLAppletElement.h
index e27196537..c616bb432 100644
--- a/src/3rdparty/webkit/WebCore/html/HTMLAppletElement.h
+++ b/src/3rdparty/webkit/WebCore/html/HTMLAppletElement.h
@@ -1,7 +1,7 @@
/*
* Copyright (C) 1999 Lars Knoll (knoll@kde.org)
* (C) 1999 Antti Koivisto (koivisto@kde.org)
- * Copyright (C) 2004, 2006, 2008 Apple Inc. All rights reserved.
+ * Copyright (C) 2004, 2006, 2008, 2009 Apple Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
@@ -33,8 +33,14 @@ class HTMLImageLoader;
class HTMLAppletElement : public HTMLPlugInElement {
public:
HTMLAppletElement(const QualifiedName&, Document*);
- ~HTMLAppletElement();
+ String hspace() const;
+ void setHspace(const String&);
+
+ String vspace() const;
+ void setVspace(const String&);
+
+private:
virtual int tagPriority() const { return 1; }
virtual void parseMappedAttribute(MappedAttribute*);
@@ -45,33 +51,11 @@ public:
virtual RenderWidget* renderWidgetForJSBindings() const;
- String alt() const;
- void setAlt(const String&);
-
- String archive() const;
- void setArchive(const String&);
-
- String code() const;
- void setCode(const String&);
-
- String codeBase() const;
- void setCodeBase(const String&);
-
- String hspace() const;
- void setHspace(const String&);
-
- String object() const;
- void setObject(const String&);
-
- String vspace() const;
- void setVspace(const String&);
-
void setupApplet() const;
virtual void insertedIntoDocument();
virtual void removedFromDocument();
-private:
AtomicString m_id;
};