summaryrefslogtreecommitdiffstats
path: root/WebCore/css/CSSCursorImageValue.h
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2008-10-21 07:00:00 -0700
committerThe Android Open Source Project <initial-contribution@android.com>2008-10-21 07:00:00 -0700
commit9364f22aed35e1a1e9d07c121510f80be3ab0502 (patch)
treed49911209b132da58d838efa852daf28d516df21 /WebCore/css/CSSCursorImageValue.h
parent87eb0cb35bad8784770ebc807e6c982432e47107 (diff)
downloadexternal_webkit-9364f22aed35e1a1e9d07c121510f80be3ab0502.zip
external_webkit-9364f22aed35e1a1e9d07c121510f80be3ab0502.tar.gz
external_webkit-9364f22aed35e1a1e9d07c121510f80be3ab0502.tar.bz2
Initial Contribution
Diffstat (limited to 'WebCore/css/CSSCursorImageValue.h')
-rw-r--r--WebCore/css/CSSCursorImageValue.h16
1 files changed, 2 insertions, 14 deletions
diff --git a/WebCore/css/CSSCursorImageValue.h b/WebCore/css/CSSCursorImageValue.h
index 69d4668..b3dadfc 100644
--- a/WebCore/css/CSSCursorImageValue.h
+++ b/WebCore/css/CSSCursorImageValue.h
@@ -1,7 +1,7 @@
/*
* This file is part of the DOM implementation for KDE.
*
- * Copyright (C) 2006 Rob Buis <buis@kde.org>
+ * Copyright (C) 2006, Rob Buis <buis@kde.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
@@ -25,13 +25,8 @@
#include "CSSImageValue.h"
#include "IntPoint.h"
-#include <wtf/HashSet.h>
-
namespace WebCore {
-class Element;
-class SVGElement;
-
class CSSCursorImageValue : public CSSImageValue {
public:
CSSCursorImageValue(const String& url, const IntPoint& hotspot, StyleBase*);
@@ -39,15 +34,8 @@ public:
IntPoint hotspot() const { return m_hotspot; }
- bool updateIfSVGCursorIsUsed(Element*);
- virtual CachedImage* image(DocLoader*);
-
-private:
+protected:
IntPoint m_hotspot;
-
-#if ENABLE(SVG)
- HashSet<SVGElement*> m_referencedElements;
-#endif
};
} // namespace WebCore