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

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

Issue 2709983004: WIP bindings: Add support for the record<K,V> WebIDL type. (Closed)
Patch Set: Rebased patch using NativeValueTraits for IDL types Created 3 years, 9 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 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 [RaisesException] void setNetworkConnectionInfoOverride(boolean onLine, DOMS tring type, double downlinkMaxMbps); 310 [RaisesException] void setNetworkConnectionInfoOverride(boolean onLine, DOMS tring type, double downlinkMaxMbps);
311 void clearNetworkConnectionInfoOverride(); 311 void clearNetworkConnectionInfoOverride();
312 312
313 // This function is for testing HitRegions on Canvas2D. 313 // This function is for testing HitRegions on Canvas2D.
314 unsigned long countHitRegions(CanvasRenderingContext2D context); 314 unsigned long countHitRegions(CanvasRenderingContext2D context);
315 315
316 boolean isInCanvasFontCache(Document document, DOMString fontString); 316 boolean isInCanvasFontCache(Document document, DOMString fontString);
317 unsigned long canvasFontCacheMaxFonts(); 317 unsigned long canvasFontCacheMaxFonts();
318 318
319 DictionaryTest dictionaryTest(); 319 DictionaryTest dictionaryTest();
320 RecordTest recordTest();
320 UnionTypesTest unionTypesTest(); 321 UnionTypesTest unionTypesTest();
321 CallbackFunctionTest callbackFunctionTest(); 322 CallbackFunctionTest callbackFunctionTest();
322 [RaisesException] void setScrollChain(ScrollState scrollState, sequence<Elem ent> elements); 323 [RaisesException] void setScrollChain(ScrollState scrollState, sequence<Elem ent> elements);
323 void forceBlinkGCWithoutV8GC(); 324 void forceBlinkGCWithoutV8GC();
324 325
325 DOMString selectedHTMLForClipboard(); 326 DOMString selectedHTMLForClipboard();
326 DOMString selectedTextForClipboard(); 327 DOMString selectedTextForClipboard();
327 328
328 void setVisualViewportOffset(long x, long y); 329 void setVisualViewportOffset(long x, long y);
329 int visualViewportHeight(); 330 int visualViewportHeight();
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 DOMString getProgrammaticScrollAnimationState(Node node); 366 DOMString getProgrammaticScrollAnimationState(Node node);
366 367
367 ClientRect visualRect(Node node); 368 ClientRect visualRect(Node node);
368 369
369 OriginTrialsTest originTrialsTest(); 370 OriginTrialsTest originTrialsTest();
370 371
371 void crash(); 372 void crash();
372 373
373 void setIsLowEndDevice(boolean isLowEndDevice); 374 void setIsLowEndDevice(boolean isLowEndDevice);
374 }; 375 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698