| Index: Source/core/dom/Document.cpp
 | 
| diff --git a/Source/core/dom/Document.cpp b/Source/core/dom/Document.cpp
 | 
| index eec540f61227eb058af63a44aa673bd7403c52f5..13a6cc2bea7a9267f68ce3098bf9f44009e62ab2 100644
 | 
| --- a/Source/core/dom/Document.cpp
 | 
| +++ b/Source/core/dom/Document.cpp
 | 
| @@ -62,7 +62,6 @@
 | 
|  #include "core/dom/Comment.h"
 | 
|  #include "core/dom/ContextFeatures.h"
 | 
|  #include "core/dom/DOMImplementation.h"
 | 
| -#include "core/dom/DOMNamedFlowCollection.h"
 | 
|  #include "core/dom/DocumentFragment.h"
 | 
|  #include "core/dom/DocumentLifecycleNotifier.h"
 | 
|  #include "core/dom/DocumentLifecycleObserver.h"
 | 
| @@ -75,7 +74,6 @@
 | 
|  #include "core/dom/ExecutionContextTask.h"
 | 
|  #include "core/dom/MainThreadTaskRunner.h"
 | 
|  #include "core/dom/MutationObserver.h"
 | 
| -#include "core/dom/NamedFlowCollection.h"
 | 
|  #include "core/dom/NodeChildRemovalTracker.h"
 | 
|  #include "core/dom/NodeFilter.h"
 | 
|  #include "core/dom/NodeIterator.h"
 | 
| @@ -1060,24 +1058,6 @@ bool Document::regionBasedColumnsEnabled() const
 | 
|      return settings() && settings()->regionBasedColumnsEnabled();
 | 
|  }
 | 
|  
 | 
| -PassRefPtr<DOMNamedFlowCollection> Document::webkitGetNamedFlows()
 | 
| -{
 | 
| -    if (!RuntimeEnabledFeatures::cssRegionsEnabled() || !renderView())
 | 
| -        return 0;
 | 
| -
 | 
| -    updateStyleIfNeeded();
 | 
| -
 | 
| -    return namedFlows()->createCSSOMSnapshot();
 | 
| -}
 | 
| -
 | 
| -NamedFlowCollection* Document::namedFlows()
 | 
| -{
 | 
| -    if (!m_namedFlows)
 | 
| -        m_namedFlows = NamedFlowCollection::create(this);
 | 
| -
 | 
| -    return m_namedFlows.get();
 | 
| -}
 | 
| -
 | 
|  String Document::readyState() const
 | 
|  {
 | 
|      DEFINE_STATIC_LOCAL(const String, loading, ("loading"));
 | 
| 
 |