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

Unified Diff: Source/core/dom/NamedFlowCollection.cpp

Issue 163413005: DevTools: [CSS] remove CSS Regions experiment from DevTools. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 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 | « no previous file | Source/core/inspector/InspectorCSSAgent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/NamedFlowCollection.cpp
diff --git a/Source/core/dom/NamedFlowCollection.cpp b/Source/core/dom/NamedFlowCollection.cpp
index eeeaa5084962f3aaa7941d319ff971dbebe21b34..26355feedde267b7efe7a20de2e112ea000b61a8 100644
--- a/Source/core/dom/NamedFlowCollection.cpp
+++ b/Source/core/dom/NamedFlowCollection.cpp
@@ -33,7 +33,6 @@
#include "RuntimeEnabledFeatures.h"
#include "core/dom/DOMNamedFlowCollection.h"
#include "core/dom/Document.h"
-#include "core/inspector/InspectorInstrumentation.h"
#include "wtf/text/AtomicString.h"
#include "wtf/text/StringHash.h"
#include "wtf/text/WTFString.h"
@@ -84,8 +83,6 @@ PassRefPtr<NamedFlow> NamedFlowCollection::ensureFlowWithName(const AtomicString
RefPtr<NamedFlow> newFlow = NamedFlow::create(this, flowName);
m_namedFlows.add(newFlow.get());
- InspectorInstrumentation::didCreateNamedFlow(document(), newFlow.get());
-
return newFlow.release();
}
@@ -98,8 +95,6 @@ void NamedFlowCollection::discardNamedFlow(NamedFlow* namedFlow)
ASSERT(namedFlow->flowState() == NamedFlow::FlowStateNull);
ASSERT(m_namedFlows.contains(namedFlow));
- InspectorInstrumentation::willRemoveNamedFlow(document(), namedFlow);
-
m_namedFlows.remove(namedFlow);
}
« no previous file with comments | « no previous file | Source/core/inspector/InspectorCSSAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698