| 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 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 312 [RaisesException] void setNetworkConnectionInfoOverride(boolean onLine, DOMS
tring type, double downlinkMaxMbps); | 312 [RaisesException] void setNetworkConnectionInfoOverride(boolean onLine, DOMS
tring type, double downlinkMaxMbps); |
| 313 void clearNetworkConnectionInfoOverride(); | 313 void clearNetworkConnectionInfoOverride(); |
| 314 | 314 |
| 315 // This function is for testing HitRegions on Canvas2D. | 315 // This function is for testing HitRegions on Canvas2D. |
| 316 unsigned long countHitRegions(CanvasRenderingContext2D context); | 316 unsigned long countHitRegions(CanvasRenderingContext2D context); |
| 317 | 317 |
| 318 boolean isInCanvasFontCache(Document document, DOMString fontString); | 318 boolean isInCanvasFontCache(Document document, DOMString fontString); |
| 319 unsigned long canvasFontCacheMaxFonts(); | 319 unsigned long canvasFontCacheMaxFonts(); |
| 320 | 320 |
| 321 DictionaryTest dictionaryTest(); | 321 DictionaryTest dictionaryTest(); |
| 322 RecordTest recordTest(); |
| 322 UnionTypesTest unionTypesTest(); | 323 UnionTypesTest unionTypesTest(); |
| 323 CallbackFunctionTest callbackFunctionTest(); | 324 CallbackFunctionTest callbackFunctionTest(); |
| 324 [RaisesException] void setScrollChain(ScrollState scrollState, sequence<Elem
ent> elements); | 325 [RaisesException] void setScrollChain(ScrollState scrollState, sequence<Elem
ent> elements); |
| 325 void forceBlinkGCWithoutV8GC(); | 326 void forceBlinkGCWithoutV8GC(); |
| 326 | 327 |
| 327 DOMString selectedHTMLForClipboard(); | 328 DOMString selectedHTMLForClipboard(); |
| 328 DOMString selectedTextForClipboard(); | 329 DOMString selectedTextForClipboard(); |
| 329 | 330 |
| 330 void setVisualViewportOffset(long x, long y); | 331 void setVisualViewportOffset(long x, long y); |
| 331 int visualViewportHeight(); | 332 int visualViewportHeight(); |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 367 DOMString getProgrammaticScrollAnimationState(Node node); | 368 DOMString getProgrammaticScrollAnimationState(Node node); |
| 368 | 369 |
| 369 ClientRect visualRect(Node node); | 370 ClientRect visualRect(Node node); |
| 370 | 371 |
| 371 OriginTrialsTest originTrialsTest(); | 372 OriginTrialsTest originTrialsTest(); |
| 372 | 373 |
| 373 void crash(); | 374 void crash(); |
| 374 | 375 |
| 375 void setIsLowEndDevice(boolean isLowEndDevice); | 376 void setIsLowEndDevice(boolean isLowEndDevice); |
| 376 }; | 377 }; |
| OLD | NEW |