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 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
226 void mediaPlayerPlayingRemotelyChanged(HTMLMediaElement mediaElement, boolea
n remote); | 226 void mediaPlayerPlayingRemotelyChanged(HTMLMediaElement mediaElement, boolea
n remote); |
227 | 227 |
228 void registerURLSchemeAsBypassingContentSecurityPolicy(DOMString scheme); | 228 void registerURLSchemeAsBypassingContentSecurityPolicy(DOMString scheme); |
229 void registerURLSchemeAsBypassingContentSecurityPolicy(DOMString scheme, seq
uence<DOMString> policyAreas); | 229 void registerURLSchemeAsBypassingContentSecurityPolicy(DOMString scheme, seq
uence<DOMString> policyAreas); |
230 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(DOMString sch
eme); | 230 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(DOMString sch
eme); |
231 | 231 |
232 TypeConversions typeConversions(); | 232 TypeConversions typeConversions(); |
233 | 233 |
234 sequence<DOMString> getReferencedFilePaths(); | 234 sequence<DOMString> getReferencedFilePaths(); |
235 | 235 |
| 236 [RaisesException] void startStoringCompositedLayerDebugInfo(Document documen
t); |
| 237 [RaisesException] void stopStoringCompositedLayerDebugInfo(Document document
); |
| 238 |
236 // These functions both reset the tracked repaint rects. They are intended t
o be used in the following order: | 239 // These functions both reset the tracked repaint rects. They are intended t
o be used in the following order: |
237 // startTrackingRepaints(), repaintRectsAsText(), stopTrackingRepaints(). | 240 // startTrackingRepaints(), repaintRectsAsText(), stopTrackingRepaints(). |
238 [RaisesException] void startTrackingRepaints(Document document); | 241 [RaisesException] void startTrackingRepaints(Document document); |
239 [RaisesException] void stopTrackingRepaints(Document document); | 242 [RaisesException] void stopTrackingRepaints(Document document); |
240 | 243 |
241 // |node| should be Document, HTMLIFrameElement, or unspecified. | 244 // |node| should be Document, HTMLIFrameElement, or unspecified. |
242 // If |node| is an HTMLIFrameElement, it assumes node.contentDocument is | 245 // If |node| is an HTMLIFrameElement, it assumes node.contentDocument is |
243 // specified without security checks. Unspecified means this document. | 246 // specified without security checks. Unspecified means this document. |
244 [RaisesException] void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutT
asks(optional Node? node = null); | 247 [RaisesException] void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutT
asks(optional Node? node = null); |
245 | 248 |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
350 DOMString getProgrammaticScrollAnimationState(Node node); | 353 DOMString getProgrammaticScrollAnimationState(Node node); |
351 | 354 |
352 ClientRect visualRect(Node node); | 355 ClientRect visualRect(Node node); |
353 | 356 |
354 OriginTrialsTest originTrialsTest(); | 357 OriginTrialsTest originTrialsTest(); |
355 | 358 |
356 void crash(); | 359 void crash(); |
357 | 360 |
358 void setIsLowEndDevice(boolean isLowEndDevice); | 361 void setIsLowEndDevice(boolean isLowEndDevice); |
359 }; | 362 }; |
OLD | NEW |