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

Side by Side Diff: Source/bindings/tests/idls/TestObj.idl

Issue 13799007: Support for selective DOM activity logging, based on IDL attributes. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removed bindings tests output, temporarily, to work around diff difficulty. Created 7 years, 8 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 unified diff | Download patch
« no previous file with comments | « Source/bindings/scripts/IDLAttributes.txt ('k') | Source/bindings/v8/V8Binding.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * Copyright (C) 2010 Apple Inc. All rights reserved. 3 * Copyright (C) 2010 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary formstrArg, with or without 5 * Redistribution and use in source and binary formstrArg, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 266
267 attribute long? nullableLongSettableAttribute; 267 attribute long? nullableLongSettableAttribute;
268 268
269 [GetterRaisesException] attribute long? nullableStringValue; 269 [GetterRaisesException] attribute long? nullableStringValue;
270 270
271 [PerWorldBindings] readonly attribute TestObj perWorldReadOnlyAttribute; 271 [PerWorldBindings] readonly attribute TestObj perWorldReadOnlyAttribute;
272 [PerWorldBindings] attribute TestObj perWorldAttribute; 272 [PerWorldBindings] attribute TestObj perWorldAttribute;
273 [PerWorldBindings] void perWorldMethod(); 273 [PerWorldBindings] void perWorldMethod();
274 [PerWorldBindings] void overloadedPerWorldMethod(long longArg); 274 [PerWorldBindings] void overloadedPerWorldMethod(long longArg);
275 [PerWorldBindings] void overloadedPerWorldMethod(DOMString strArg, long long Arg); 275 [PerWorldBindings] void overloadedPerWorldMethod(DOMString strArg, long long Arg);
276
277 [ActivityLog=Access] void activityLoggedMethod1(long longArg);
278 [PerWorldBindings, ActivityLog=Access] void activityLoggedMethod2(long longA rg);
279 [PerWorldBindings, ActivityLog=AccessForIsolatedWorlds] void activityLoggedI nIsolatedWorldMethod(long longArg);
280 [PerWorldBindings, ActivityLog=Access] void overloadedActivityLoggedMethod(l ong longArg);
281 [PerWorldBindings, ActivityLog=Access] void overloadedActivityLoggedMethod(D OMString strArg, long longArg);
282 [ActivityLog=Access] attribute long activityLoggedAttr1;
283 [PerWorldBindings, ActivityLog=Access] attribute long activityLoggedAttr2;
284 [PerWorldBindings, ActivityLog=AccessForIsolatedWorlds] attribute long activ ityLoggedInIsolatedWorldsAttr;
285 [ActivityLog=Setter] attribute long activityLoggedAttrSetter1;
286 [PerWorldBindings, ActivityLog=Setter] attribute long activityLoggedAttrSett er2;
287 [PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attribute long activ ityLoggedInIsolatedWorldsAttrSetter;
288 [ActivityLog=Getter] attribute long activityLoggedAttrGetter1;
289 [PerWorldBindings, ActivityLog=Getter] attribute long activityLoggedAttrGett er2;
290 [PerWorldBindings, ActivityLog=GetterForIsolatedWorlds] attribute long activ ityLoggedInIsolatedWorldsAttrGetter;
276 }; 291 };
OLDNEW
« no previous file with comments | « Source/bindings/scripts/IDLAttributes.txt ('k') | Source/bindings/v8/V8Binding.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698