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

Unified Diff: third_party/WebKit/Source/bindings/tests/idls/core/TestInterfaceCheckSecurity.idl

Issue 2439013002: Implement cross-origin attributes using access check interceptors. (Closed)
Patch Set: Attributes, sort of Created 4 years, 2 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/bindings/tests/idls/core/TestInterfaceCheckSecurity.idl
diff --git a/third_party/WebKit/Source/bindings/tests/idls/core/TestInterfaceCheckSecurity.idl b/third_party/WebKit/Source/bindings/tests/idls/core/TestInterfaceCheckSecurity.idl
index e53b649419987d8f11d5290d3bd32d120fa17918..07f4a7d2b0d8bdc7e151a435f5e3f2de5a2995de 100644
--- a/third_party/WebKit/Source/bindings/tests/idls/core/TestInterfaceCheckSecurity.idl
+++ b/third_party/WebKit/Source/bindings/tests/idls/core/TestInterfaceCheckSecurity.idl
@@ -34,10 +34,10 @@
attribute long longAttribute;
void voidMethod();
- [DoNotCheckSecurity] attribute long doNotCheckSecurityLongAttribute;
- [DoNotCheckSecurity] readonly attribute long doNotCheckSecurityReadonlyLongAttribute; // Separate read only attribute to check attribute configuration
- [DoNotCheckSecurity=Setter] attribute long doNotCheckSecurityOnSetterLongAttribute;
- [DoNotCheckSecurity, Replaceable] readonly attribute long doNotCheckSecurityReplaceableReadonlyLongAttribute;
+ [CrossOrigin] attribute long doNotCheckSecurityLongAttribute;
+ [CrossOrigin] readonly attribute long doNotCheckSecurityReadonlyLongAttribute; // Separate read only attribute to check attribute configuration
+ [CrossOrigin=Setter] attribute long doNotCheckSecurityOnSetterLongAttribute;
+ [CrossOrigin, Replaceable] readonly attribute long doNotCheckSecurityReplaceableReadonlyLongAttribute;
[DoNotCheckSecurity] void doNotCheckSecurityVoidMethod();
[DoNotCheckSecurity, PerWorldBindings] void doNotCheckSecurityPerWorldBindingsVoidMethod();

Powered by Google App Engine
This is Rietveld 408576698