| Index: Source/core/dom/Document.h
 | 
| diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
 | 
| index 9a43f1fe30e8f1315b6a2f45214a1877f74c26fe..4e95b3df2a1a9fa7908defc5ee855bcea24fc1ea 100644
 | 
| --- a/Source/core/dom/Document.h
 | 
| +++ b/Source/core/dom/Document.h
 | 
| @@ -1070,14 +1070,12 @@ public:
 | 
|  
 | 
|      TextAutosizer* textAutosizer() { return m_textAutosizer.get(); }
 | 
|  
 | 
| -#if ENABLE(CUSTOM_ELEMENTS)
 | 
|      PassRefPtr<Element> createElement(const AtomicString& localName, const AtomicString& typeExtension, ExceptionCode&);
 | 
|      PassRefPtr<Element> createElementNS(const AtomicString& namespaceURI, const String& qualifiedName, const AtomicString& typeExtension, ExceptionCode&);
 | 
|      PassRefPtr<CustomElementConstructor> registerElement(WebCore::ScriptState*, const AtomicString& name, ExceptionCode&);
 | 
|      PassRefPtr<CustomElementConstructor> registerElement(WebCore::ScriptState*, const AtomicString& name, const Dictionary& options, ExceptionCode&);
 | 
|      CustomElementRegistry* registry() const { return m_registry.get(); }
 | 
|      void didCreateCustomElement(Element*, CustomElementConstructor*);
 | 
| -#endif
 | 
|  
 | 
|      void adjustFloatQuadsForScrollAndAbsoluteZoom(Vector<FloatQuad>&, RenderObject*);
 | 
|      void adjustFloatRectForScrollAndAbsoluteZoom(FloatRect&, RenderObject*);
 | 
| @@ -1435,9 +1433,7 @@ private:
 | 
|  
 | 
|      OwnPtr<TextAutosizer> m_textAutosizer;
 | 
|  
 | 
| -#if ENABLE(CUSTOM_ELEMENTS)
 | 
|      RefPtr<CustomElementRegistry> m_registry;
 | 
| -#endif
 | 
|  
 | 
|      bool m_scheduledTasksAreSuspended;
 | 
|      
 | 
| 
 |