Index: third_party/WebKit/Source/core/dom/Document.h |
diff --git a/third_party/WebKit/Source/core/dom/Document.h b/third_party/WebKit/Source/core/dom/Document.h |
index faa04784e74c73f06b2eb85bc9de281aabb8f84f..35df19358ce601449b2141f3529ad1b866c07bc0 100644 |
--- a/third_party/WebKit/Source/core/dom/Document.h |
+++ b/third_party/WebKit/Source/core/dom/Document.h |
@@ -813,10 +813,6 @@ public: |
void updateFocusAppearanceSoon(bool restorePreviousSelection); |
void cancelFocusAppearanceUpdate(); |
- // Extension for manipulating canvas drawing contexts for use in CSS |
- ScriptValue getCSSCanvasContext(ScriptState*, const String& type, const String& name, int width, int height); |
- HTMLCanvasElement& getCSSCanvasElement(const String& name); |
- |
bool isDNSPrefetchEnabled() const { return m_isDNSPrefetchEnabled; } |
void parseDNSPrefetchControlHeader(const String&); |
@@ -1300,8 +1296,6 @@ private: |
bool m_hasAnnotatedRegions; |
bool m_annotatedRegionsDirty; |
- WillBeHeapHashMap<String, RefPtrWillBeMember<HTMLCanvasElement>> m_cssCanvasElements; |
- |
OwnPtr<SelectorQueryCache> m_selectorQueryCache; |
// It is safe to keep a raw, untraced pointer to this stack-allocated |