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

Unified Diff: Source/bindings/tests/idls/TestCheckSecurityInterface.idl

Issue 77453002: IDL compiler: [CheckSecurity=Frame] interface + [DoNotCheckSecurity] members (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Revised Created 7 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
« no previous file with comments | « Source/bindings/templates/methods.cpp ('k') | Source/bindings/tests/idls/TestObjectPython.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/tests/idls/TestCheckSecurityInterface.idl
diff --git a/Source/bindings/tests/idls/TestCheckSecurityInterface.idl b/Source/bindings/tests/idls/TestCheckSecurityInterface.idl
index aa44dee23715436aa1679206c150d2c8530196a1..62804419742d5ddb61055bfcae4bec8766c637b6 100644
--- a/Source/bindings/tests/idls/TestCheckSecurityInterface.idl
+++ b/Source/bindings/tests/idls/TestCheckSecurityInterface.idl
@@ -29,8 +29,14 @@
[
CheckSecurity=Frame,
] interface TestCheckSecurityInterface {
- readonly attribute long excitingAttr;
- void excitingFunction(Node nextChild);
- [DoNotCheckSecurity] void postMessage(DOMString message);
- [DoNotCheckSecurity, PerWorldBindings, ActivityLogging=ForIsolatedWorlds] void perWorldBindingsMethodWithDoNotCheckSecurity(DOMString url);
+ readonly 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] void doNotCheckSecurityVoidMethod();
+ [DoNotCheckSecurity, PerWorldBindings] void doNotCheckSecurityPerWorldBindingsVoidMethod();
+ [DoNotCheckSecurity, ReadOnly] void doNotCheckSecurityReadOnlyVoidMethod();
+ [DoNotCheckSecurity, Unforgeable] void doNotCheckSecurityUnforgeableVoidMethod();
};
« no previous file with comments | « Source/bindings/templates/methods.cpp ('k') | Source/bindings/tests/idls/TestObjectPython.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698