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

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 295 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 void clearNetworkConnectionInfoOverride(); 306 void clearNetworkConnectionInfoOverride();
307 307
308 // This function is for testing HitRegions on Canvas2D. 308 // This function is for testing HitRegions on Canvas2D.
309 unsigned long countHitRegions(CanvasRenderingContext2D context); 309 unsigned long countHitRegions(CanvasRenderingContext2D context);
310 310
311 boolean isInCanvasFontCache(Document document, DOMString fontString); 311 boolean isInCanvasFontCache(Document document, DOMString fontString);
312 unsigned long canvasFontCacheMaxFonts(); 312 unsigned long canvasFontCacheMaxFonts();
313 313
314 DictionaryTest dictionaryTest(); 314 DictionaryTest dictionaryTest();
315 UnionTypesTest unionTypesTest(); 315 UnionTypesTest unionTypesTest();
316 CallbackFunctionTest callbackFunctionTest();
316 [RaisesException] void setScrollChain(ScrollState scrollState, Element[] ele ments); 317 [RaisesException] void setScrollChain(ScrollState scrollState, Element[] ele ments);
317 void forceBlinkGCWithoutV8GC(); 318 void forceBlinkGCWithoutV8GC();
318 319
319 DOMString selectedHTMLForClipboard(); 320 DOMString selectedHTMLForClipboard();
320 DOMString selectedTextForClipboard(); 321 DOMString selectedTextForClipboard();
321 322
322 void setVisualViewportOffset(long x, long y); 323 void setVisualViewportOffset(long x, long y);
323 int visualViewportHeight(); 324 int visualViewportHeight();
324 int visualViewportWidth(); 325 int visualViewportWidth();
325 double visualViewportScrollX(); 326 double visualViewportScrollX();
(...skipping 27 matching lines...) Expand all
353 DOMString getScrollAnimationState(Node node); 354 DOMString getScrollAnimationState(Node node);
354 355
355 DOMString getProgrammaticScrollAnimationState(Node node); 356 DOMString getProgrammaticScrollAnimationState(Node node);
356 357
357 ClientRect visualRect(Node node); 358 ClientRect visualRect(Node node);
358 359
359 OriginTrialsTest originTrialsTest(); 360 OriginTrialsTest originTrialsTest();
360 361
361 void crash(); 362 void crash();
362 }; 363 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698