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

Unified Diff: third_party/WebKit/Source/core/dom/Document.cpp

Issue 2112593003: [DevTools] Remove [V8] from InspectorInstrumentation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: cleanup, moving csp event to dom debugger Created 4 years, 6 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
Index: third_party/WebKit/Source/core/dom/Document.cpp
diff --git a/third_party/WebKit/Source/core/dom/Document.cpp b/third_party/WebKit/Source/core/dom/Document.cpp
index 0237c178a90d10d43bb4150ec865e83db8984ccb..907b7639bb409b7e3c088574e64d6113baa3eb94 100644
--- a/third_party/WebKit/Source/core/dom/Document.cpp
+++ b/third_party/WebKit/Source/core/dom/Document.cpp
@@ -5186,11 +5186,6 @@ NodeIntersectionObserverData& Document::ensureIntersectionObserverData()
return *m_intersectionObserverData;
}
-void Document::reportBlockedScriptExecutionToInspector(const String& directiveText)
-{
- InspectorInstrumentation::scriptExecutionBlockedByCSP(this, directiveText);
-}
-
static void runAddConsoleMessageTask(MessageSource source, MessageLevel level, const String& message, ExecutionContext* context)
{
context->addConsoleMessage(ConsoleMessage::create(source, level, message));

Powered by Google App Engine
This is Rietveld 408576698