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

Side by Side Diff: Source/bindings/tests/idls/core/TestObject.idl

Issue 656073002: IDL: Use ALLOW_ONLY_INLINE_ALLOCATION() in dictionaries (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after
357 void voidMethodTestInterfaceEmptyOrNullArg(TestInterfaceEmpty? nullableTestI nterfaceEmptyArg); 357 void voidMethodTestInterfaceEmptyOrNullArg(TestInterfaceEmpty? nullableTestI nterfaceEmptyArg);
358 // Callback interface types 358 // Callback interface types
359 void voidMethodTestCallbackInterfaceArg(TestCallbackInterface testCallbackIn terfaceArg); 359 void voidMethodTestCallbackInterfaceArg(TestCallbackInterface testCallbackIn terfaceArg);
360 void voidMethodOptionalTestCallbackInterfaceArg(optional TestCallbackInterfa ce optionalTestCallbackInterfaceArg); 360 void voidMethodOptionalTestCallbackInterfaceArg(optional TestCallbackInterfa ce optionalTestCallbackInterfaceArg);
361 void voidMethodTestCallbackInterfaceOrNullArg(TestCallbackInterface? testCal lbackInterfaceArg); 361 void voidMethodTestCallbackInterfaceOrNullArg(TestCallbackInterface? testCal lbackInterfaceArg);
362 // Enumerations 362 // Enumerations
363 TestEnum testEnumMethod(); 363 TestEnum testEnumMethod();
364 void voidMethodTestEnumArg(TestEnum testEnumTypeArg); 364 void voidMethodTestEnumArg(TestEnum testEnumTypeArg);
365 // Exceptional types 365 // Exceptional types
366 Dictionary dictionaryMethod(); 366 Dictionary dictionaryMethod();
367 TestDictionary testDictionaryMethod();
367 NodeFilter nodeFilterMethod(); 368 NodeFilter nodeFilterMethod();
368 Promise promiseMethod(long arg1, Dictionary arg2, DOMString arg3, DOMString. .. variadic); 369 Promise promiseMethod(long arg1, Dictionary arg2, DOMString arg3, DOMString. .. variadic);
369 Promise promiseMethodWithoutExceptionState(Dictionary arg1); 370 Promise promiseMethodWithoutExceptionState(Dictionary arg1);
370 SerializedScriptValue serializedScriptValueMethod(); 371 SerializedScriptValue serializedScriptValueMethod();
371 XPathNSResolver xPathNSResolverMethod(); 372 XPathNSResolver xPathNSResolverMethod();
372 void voidMethodDictionaryArg(Dictionary dictionaryArg); 373 void voidMethodDictionaryArg(Dictionary dictionaryArg);
373 void voidMethodNodeFilterArg(NodeFilter nodeFilterArg); 374 void voidMethodNodeFilterArg(NodeFilter nodeFilterArg);
374 void voidMethodPromiseArg(Promise promiseArg); 375 void voidMethodPromiseArg(Promise promiseArg);
375 void voidMethodSerializedScriptValueArg(SerializedScriptValue serializedScri ptValueArg); 376 void voidMethodSerializedScriptValueArg(SerializedScriptValue serializedScri ptValueArg);
376 void voidMethodXPathNSResolverArg(XPathNSResolver xPathNSResolverArg); 377 void voidMethodXPathNSResolverArg(XPathNSResolver xPathNSResolverArg);
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
550 [ImplementedInPrivateScript] readonly attribute short readonlyShortAttribute ; 551 [ImplementedInPrivateScript] readonly attribute short readonlyShortAttribute ;
551 [ImplementedInPrivateScript] attribute short shortAttribute; 552 [ImplementedInPrivateScript] attribute short shortAttribute;
552 [ImplementedInPrivateScript] attribute DOMString stringAttribute; 553 [ImplementedInPrivateScript] attribute DOMString stringAttribute;
553 [ImplementedInPrivateScript] attribute Node nodeAttribute; 554 [ImplementedInPrivateScript] attribute Node nodeAttribute;
554 [OnlyExposedToPrivateScript] short methodImplementedInCPPForPrivateScriptOnl y(short value1, short value2); 555 [OnlyExposedToPrivateScript] short methodImplementedInCPPForPrivateScriptOnl y(short value1, short value2);
555 [OnlyExposedToPrivateScript] attribute DOMString attributeImplementedInCPPFo rPrivateScriptOnly; 556 [OnlyExposedToPrivateScript] attribute DOMString attributeImplementedInCPPFo rPrivateScriptOnly;
556 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short methodForPriv ateScriptOnly(short value1, short value2); 557 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short methodForPriv ateScriptOnly(short value1, short value2);
557 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString attributeForPrivateScriptOnly; 558 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString attributeForPrivateScriptOnly;
558 [ImplementedInPrivateScript] attribute TestEnum enumForPrivateScript; 559 [ImplementedInPrivateScript] attribute TestEnum enumForPrivateScript;
559 }; 560 };
OLDNEW
« no previous file with comments | « Source/bindings/tests/idls/core/TestDictionary.idl ('k') | Source/bindings/tests/results/core/TestDictionary.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698