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

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

Issue 396283004: Make the MediaQueryList listener an EventListener (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebased Created 6 years, 5 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 | Annotate | Revision Log
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 307 matching lines...) Expand 10 before | Expand all | Expand 10 after
318 // Callback function type 318 // Callback function type
319 VoidCallbackFunction voidCallbackFunctionMethod(); 319 VoidCallbackFunction voidCallbackFunctionMethod();
320 AnyCallbackFunctionOptionalAnyArg anyCallbackFunctionOptionalAnyArgMethod(); 320 AnyCallbackFunctionOptionalAnyArg anyCallbackFunctionOptionalAnyArgMethod();
321 void voidMethodVoidCallbackFunctionArg(VoidCallbackFunction voidCallbackFunc tionArg); 321 void voidMethodVoidCallbackFunctionArg(VoidCallbackFunction voidCallbackFunc tionArg);
322 void voidMethodAnyCallbackFunctionOptionalAnyArg(AnyCallbackFunctionOptional AnyArg anyCallbackFunctionOptionalAnyArgArg); 322 void voidMethodAnyCallbackFunctionOptionalAnyArg(AnyCallbackFunctionOptional AnyArg anyCallbackFunctionOptionalAnyArgArg);
323 // Custom type conversions 323 // Custom type conversions
324 CompareHow compareHowMethod(); 324 CompareHow compareHowMethod();
325 any anyMethod(); 325 any anyMethod();
326 void voidMethodCompareHowArg(CompareHow compareHowArg); 326 void voidMethodCompareHowArg(CompareHow compareHowArg);
327 void voidMethodEventTargetArg(EventTarget eventTargetArg); 327 void voidMethodEventTargetArg(EventTarget eventTargetArg);
328 void voidMethodMediaQueryListListenerArg(MediaQueryListListener mediaQueryLi stListenerArg);
329 void voidMethodAnyArg(any anyArg); 328 void voidMethodAnyArg(any anyArg);
330 // DOM node types 329 // DOM node types
331 void voidMethodAttrArg(Attr attrArg); 330 void voidMethodAttrArg(Attr attrArg);
332 void voidMethodDocumentArg(Document documentArg); 331 void voidMethodDocumentArg(Document documentArg);
333 void voidMethodDocumentTypeArg(DocumentType documentTypeArg); 332 void voidMethodDocumentTypeArg(DocumentType documentTypeArg);
334 void voidMethodElementArg(Element elementArg); 333 void voidMethodElementArg(Element elementArg);
335 void voidMethodNodeArg(Node nodeArg); 334 void voidMethodNodeArg(Node nodeArg);
336 // Typed arrays 335 // Typed arrays
337 ArrayBuffer arrayBufferMethod(); 336 ArrayBuffer arrayBufferMethod();
338 ArrayBufferView arrayBufferViewMethod(); 337 ArrayBufferView arrayBufferViewMethod();
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
549 [ImplementedInPrivateScript] short shortMethodWithShortArgumentImplementedIn PrivateScript(short value); 548 [ImplementedInPrivateScript] short shortMethodWithShortArgumentImplementedIn PrivateScript(short value);
550 [ImplementedInPrivateScript] DOMString stringMethodWithStringArgumentImpleme ntedInPrivateScript(DOMString value); 549 [ImplementedInPrivateScript] DOMString stringMethodWithStringArgumentImpleme ntedInPrivateScript(DOMString value);
551 [ImplementedInPrivateScript] Node nodeMethodWithNodeArgumentImplementedInPri vateScript(Node value); 550 [ImplementedInPrivateScript] Node nodeMethodWithNodeArgumentImplementedInPri vateScript(Node value);
552 [ImplementedInPrivateScript] Node nodeMethodWithVariousArgumentsImplementedI nPrivateScript(Document document, Node node, short value1, double value2, DOMStr ing string); 551 [ImplementedInPrivateScript] Node nodeMethodWithVariousArgumentsImplementedI nPrivateScript(Document document, Node node, short value1, double value2, DOMStr ing string);
553 [ImplementedInPrivateScript] readonly attribute short readonlyShortAttribute ; 552 [ImplementedInPrivateScript] readonly attribute short readonlyShortAttribute ;
554 [ImplementedInPrivateScript] attribute short shortAttribute; 553 [ImplementedInPrivateScript] attribute short shortAttribute;
555 [ImplementedInPrivateScript] attribute DOMString stringAttribute; 554 [ImplementedInPrivateScript] attribute DOMString stringAttribute;
556 [ImplementedInPrivateScript] attribute Node nodeAttribute; 555 [ImplementedInPrivateScript] attribute Node nodeAttribute;
557 556
558 }; 557 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698