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

Unified Diff: third_party/WebKit/Source/core/frame/UseCounter.h

Issue 1413193010: Add counters for various ways of loading scripts with bad mimetypes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix code and tests, passing again Created 5 years, 1 month 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/frame/UseCounter.h
diff --git a/third_party/WebKit/Source/core/frame/UseCounter.h b/third_party/WebKit/Source/core/frame/UseCounter.h
index 1a3da889cd211c752c4e743b0190c0b44234d0da..4b8f5f021d6b668005707e105845a6d4b5354986 100644
--- a/third_party/WebKit/Source/core/frame/UseCounter.h
+++ b/third_party/WebKit/Source/core/frame/UseCounter.h
@@ -891,6 +891,12 @@ public:
V8History_ScrollRestoration_AttributeGetter = 1028,
V8History_ScrollRestoration_AttributeSetter = 1029,
SVG1DOMFilter = 1030,
+ SameOriginTextScript = 1031,
+ SameOriginApplicationScript = 1032,
+ SameOriginOtherScript = 1033,
+ CrossOriginTextScript = 1034,
+ CrossOriginApplicationScript = 1035,
+ CrossOriginOtherScript = 1036,
// Add new features immediately above this line. Don't change assigned
// numbers of any item, and don't reuse removed slots.

Powered by Google App Engine
This is Rietveld 408576698