Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(39)

Unified Diff: Source/core/rendering/RenderNamedFlowThread.cpp

Issue 14178009: Remove CSS_REGIONS compile flag from Blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: New version Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/page/UseCounter.cpp ('k') | Source/core/rendering/RenderObject.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderNamedFlowThread.cpp
diff --git a/Source/core/rendering/RenderNamedFlowThread.cpp b/Source/core/rendering/RenderNamedFlowThread.cpp
index 22fb0c79a5d5e7f38af290c73fd8f50bcd1c7702..2f18d513547a7a3267333eeaaa1674efba8c6ae4 100644
--- a/Source/core/rendering/RenderNamedFlowThread.cpp
+++ b/Source/core/rendering/RenderNamedFlowThread.cpp
@@ -26,6 +26,7 @@
#include "config.h"
#include "core/rendering/RenderNamedFlowThread.h"
+#include "RuntimeEnabledFeatures.h"
#include "core/dom/ExceptionCodePlaceholder.h"
#include "core/dom/NamedFlow.h"
#include "core/dom/NodeTraversal.h"
@@ -44,7 +45,7 @@ namespace WebCore {
RenderNamedFlowThread* RenderNamedFlowThread::createAnonymous(Document* document, PassRefPtr<NamedFlow> namedFlow)
{
- ASSERT(document->cssRegionsEnabled());
+ ASSERT(RuntimeEnabledFeatures::cssRegionsEnabled());
RenderNamedFlowThread* renderer = new (document->renderArena()) RenderNamedFlowThread(namedFlow);
renderer->setDocumentForAnonymous(document);
return renderer;
« no previous file with comments | « Source/core/page/UseCounter.cpp ('k') | Source/core/rendering/RenderObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698