| Index: Source/WebCore/dom/Document.h
|
| diff --git a/Source/WebCore/dom/Document.h b/Source/WebCore/dom/Document.h
|
| index f80092b2538eab44ed60f2cf93177105afeed0f1..2a63cb298cad86943fa29bec0b43ab39c7045cc9 100644
|
| --- a/Source/WebCore/dom/Document.h
|
| +++ b/Source/WebCore/dom/Document.h
|
| @@ -161,7 +161,7 @@ class SVGDocumentExtensions;
|
| class TransformSource;
|
| #endif
|
|
|
| -#if ENABLE(DASHBOARD_SUPPORT) || ENABLE(DRAGGABLE_REGION)
|
| +#if ENABLE(DRAGGABLE_REGION)
|
| struct AnnotatedRegionValue;
|
| #endif
|
|
|
| @@ -1003,7 +1003,7 @@ public:
|
| void setFrameElementsShouldIgnoreScrolling(bool ignore) { m_frameElementsShouldIgnoreScrolling = ignore; }
|
| bool frameElementsShouldIgnoreScrolling() const { return m_frameElementsShouldIgnoreScrolling; }
|
|
|
| -#if ENABLE(DASHBOARD_SUPPORT) || ENABLE(DRAGGABLE_REGION)
|
| +#if ENABLE(DRAGGABLE_REGION)
|
| void setAnnotatedRegionsDirty(bool f) { m_annotatedRegionsDirty = f; }
|
| bool annotatedRegionsDirty() const { return m_annotatedRegionsDirty; }
|
| bool hasAnnotatedRegions () const { return m_hasAnnotatedRegions; }
|
| @@ -1466,7 +1466,7 @@ private:
|
| OwnPtr<SVGDocumentExtensions> m_svgExtensions;
|
| #endif
|
|
|
| -#if ENABLE(DASHBOARD_SUPPORT) || ENABLE(DRAGGABLE_REGION)
|
| +#if ENABLE(DRAGGABLE_REGION)
|
| Vector<AnnotatedRegionValue> m_annotatedRegions;
|
| bool m_hasAnnotatedRegions;
|
| bool m_annotatedRegionsDirty;
|
|
|