summaryrefslogtreecommitdiffstats
path: root/WebCore/wml/WMLPageState.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/wml/WMLPageState.h')
-rw-r--r--WebCore/wml/WMLPageState.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/WebCore/wml/WMLPageState.h b/WebCore/wml/WMLPageState.h
index a5d8b23..de0af91 100644
--- a/WebCore/wml/WMLPageState.h
+++ b/WebCore/wml/WMLPageState.h
@@ -54,6 +54,9 @@ public:
Page* page() const { return m_page; }
+ WMLCardElement* activeCard() const { return m_activeCard; }
+ void setActiveCard(WMLCardElement* card) { m_activeCard = card; }
+
// Deck access control
bool processAccessControlData(const String& dmain, const String& path);
void resetAccessControlData();
@@ -67,6 +70,7 @@ private:
private:
Page* m_page;
WMLVariableMap m_variables;
+ WMLCardElement* m_activeCard;
String m_accessDomain;
String m_accessPath;
bool m_hasAccessControlData;