| OLD | NEW |
| 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 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 void clearNetworkConnectionInfoOverride(); | 317 void clearNetworkConnectionInfoOverride(); |
| 318 | 318 |
| 319 // This function is for testing HitRegions on Canvas2D. | 319 // This function is for testing HitRegions on Canvas2D. |
| 320 unsigned long countHitRegions(CanvasRenderingContext2D context); | 320 unsigned long countHitRegions(CanvasRenderingContext2D context); |
| 321 | 321 |
| 322 boolean isInCanvasFontCache(Document document, DOMString fontString); | 322 boolean isInCanvasFontCache(Document document, DOMString fontString); |
| 323 unsigned long canvasFontCacheMaxFonts(); | 323 unsigned long canvasFontCacheMaxFonts(); |
| 324 | 324 |
| 325 DictionaryTest dictionaryTest(); | 325 DictionaryTest dictionaryTest(); |
| 326 RecordTest recordTest(); | 326 RecordTest recordTest(); |
| 327 SequenceTest sequenceTest(); |
| 327 UnionTypesTest unionTypesTest(); | 328 UnionTypesTest unionTypesTest(); |
| 328 CallbackFunctionTest callbackFunctionTest(); | 329 CallbackFunctionTest callbackFunctionTest(); |
| 329 [RaisesException] void setScrollChain(ScrollState scrollState, sequence<Elem
ent> elements); | 330 [RaisesException] void setScrollChain(ScrollState scrollState, sequence<Elem
ent> elements); |
| 330 void forceBlinkGCWithoutV8GC(); | 331 void forceBlinkGCWithoutV8GC(); |
| 331 | 332 |
| 332 DOMString selectedHTMLForClipboard(); | 333 DOMString selectedHTMLForClipboard(); |
| 333 DOMString selectedTextForClipboard(); | 334 DOMString selectedTextForClipboard(); |
| 334 | 335 |
| 335 void setVisualViewportOffset(long x, long y); | 336 void setVisualViewportOffset(long x, long y); |
| 336 int visualViewportHeight(); | 337 int visualViewportHeight(); |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 371 DOMString getProgrammaticScrollAnimationState(Node node); | 372 DOMString getProgrammaticScrollAnimationState(Node node); |
| 372 | 373 |
| 373 ClientRect visualRect(Node node); | 374 ClientRect visualRect(Node node); |
| 374 | 375 |
| 375 OriginTrialsTest originTrialsTest(); | 376 OriginTrialsTest originTrialsTest(); |
| 376 | 377 |
| 377 void crash(); | 378 void crash(); |
| 378 | 379 |
| 379 void setIsLowEndDevice(boolean isLowEndDevice); | 380 void setIsLowEndDevice(boolean isLowEndDevice); |
| 380 }; | 381 }; |
| OLD | NEW |