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

Side by Side Diff: third_party/WebKit/Source/core/testing/Internals.idl

Issue 2312093003: Generated bindings for IDL callback functions (Closed)
Patch Set: Addressed comments Created 4 years, 3 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) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2013 Apple Inc. All rights reserved. 3 * Copyright (C) 2013 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, 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 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 void clearNetworkConnectionInfoOverride(); 303 void clearNetworkConnectionInfoOverride();
304 304
305 // This function is for testing HitRegions on Canvas2D. 305 // This function is for testing HitRegions on Canvas2D.
306 unsigned long countHitRegions(CanvasRenderingContext2D context); 306 unsigned long countHitRegions(CanvasRenderingContext2D context);
307 307
308 boolean isInCanvasFontCache(Document document, DOMString fontString); 308 boolean isInCanvasFontCache(Document document, DOMString fontString);
309 unsigned long canvasFontCacheMaxFonts(); 309 unsigned long canvasFontCacheMaxFonts();
310 310
311 DictionaryTest dictionaryTest(); 311 DictionaryTest dictionaryTest();
312 UnionTypesTest unionTypesTest(); 312 UnionTypesTest unionTypesTest();
313 CallbackFunctionTest callbackFunctionTest();
313 [RaisesException] void setScrollChain(ScrollState scrollState, Element[] ele ments); 314 [RaisesException] void setScrollChain(ScrollState scrollState, Element[] ele ments);
314 void forceBlinkGCWithoutV8GC(); 315 void forceBlinkGCWithoutV8GC();
315 316
316 DOMString selectedHTMLForClipboard(); 317 DOMString selectedHTMLForClipboard();
317 DOMString selectedTextForClipboard(); 318 DOMString selectedTextForClipboard();
318 319
319 void setVisualViewportOffset(long x, long y); 320 void setVisualViewportOffset(long x, long y);
320 int visualViewportHeight(); 321 int visualViewportHeight();
321 int visualViewportWidth(); 322 int visualViewportWidth();
322 double visualViewportScrollX(); 323 double visualViewportScrollX();
(...skipping 25 matching lines...) Expand all
348 void triggerAutoplayViewportCheck(HTMLMediaElement mediaElement); 349 void triggerAutoplayViewportCheck(HTMLMediaElement mediaElement);
349 350
350 DOMString getScrollAnimationState(Node node); 351 DOMString getScrollAnimationState(Node node);
351 352
352 DOMString getProgrammaticScrollAnimationState(Node node); 353 DOMString getProgrammaticScrollAnimationState(Node node);
353 354
354 ClientRect visualRect(Node node); 355 ClientRect visualRect(Node node);
355 356
356 void crash(); 357 void crash();
357 }; 358 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698