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

Unified Diff: Source/core/inspector/InspectorInstrumentation.h

Issue 1315043008: [DevTools] Show blocked requests in Network panel. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: hidden Created 5 years, 3 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: Source/core/inspector/InspectorInstrumentation.h
diff --git a/Source/core/inspector/InspectorInstrumentation.h b/Source/core/inspector/InspectorInstrumentation.h
index bd9e97072896a14bd31bb0ce8a1507e98ecbe1f5..ccf00fb1bc1a35cb24b92620a9599b65be359b54 100644
--- a/Source/core/inspector/InspectorInstrumentation.h
+++ b/Source/core/inspector/InspectorInstrumentation.h
@@ -78,6 +78,15 @@ private:
RefPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents;
};
+enum InspectorRequestBlockedReason {
+ InspectorRequestBlockedReasonCSP,
+ InspectorRequestBlockedReasonMixedContent,
+ InspectorRequestBlockedReasonOrigin,
+ InspectorRequestBlockedReasonInspector,
+ InspectorRequestBlockedReasonOther,
+ InspectorRequestBlockedReasonNone
+};
+
namespace InspectorInstrumentation {
class CORE_EXPORT FrontendCounter {

Powered by Google App Engine
This is Rietveld 408576698