| 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 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 | 221 |
| 222 [RaisesException] void setDeviceScaleFactor(float scaleFactor); | 222 [RaisesException] void setDeviceScaleFactor(float scaleFactor); |
| 223 | 223 |
| 224 [RaisesException] void setIsCursorVisible(Document document, boolean isVisib
le); | 224 [RaisesException] void setIsCursorVisible(Document document, boolean isVisib
le); |
| 225 | 225 |
| 226 void webkitWillEnterFullScreenForElement(Document document, Element element)
; | 226 void webkitWillEnterFullScreenForElement(Document document, Element element)
; |
| 227 void webkitDidEnterFullScreenForElement(Document document, Element element); | 227 void webkitDidEnterFullScreenForElement(Document document, Element element); |
| 228 void webkitWillExitFullScreenForElement(Document document, Element element); | 228 void webkitWillExitFullScreenForElement(Document document, Element element); |
| 229 void webkitDidExitFullScreenForElement(Document document, Element element); | 229 void webkitDidExitFullScreenForElement(Document document, Element element); |
| 230 | 230 |
| 231 void mediaPlayerRequestFullscreen(HTMLMediaElement mediaElement); |
| 232 |
| 231 void registerURLSchemeAsBypassingContentSecurityPolicy(DOMString scheme); | 233 void registerURLSchemeAsBypassingContentSecurityPolicy(DOMString scheme); |
| 232 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(DOMString sch
eme); | 234 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(DOMString sch
eme); |
| 233 | 235 |
| 234 MallocStatistics mallocStatistics(); | 236 MallocStatistics mallocStatistics(); |
| 235 TypeConversions typeConversions(); | 237 TypeConversions typeConversions(); |
| 236 | 238 |
| 237 DOMString[] getReferencedFilePaths(); | 239 DOMString[] getReferencedFilePaths(); |
| 238 | 240 |
| 239 // These functions both reset the tracked repaint rects. They are inteded to
be used in the following order: | 241 // These functions both reset the tracked repaint rects. They are inteded to
be used in the following order: |
| 240 // startTrackingRepaints, repaintRectsAsText, stopTrackingRepaints. | 242 // startTrackingRepaints, repaintRectsAsText, stopTrackingRepaints. |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 [CallWith=ExecutionContext] Promise createPromise(); | 282 [CallWith=ExecutionContext] Promise createPromise(); |
| 281 [CallWith=ExecutionContext] Promise createResolvedPromise(any value); | 283 [CallWith=ExecutionContext] Promise createResolvedPromise(any value); |
| 282 [CallWith=ExecutionContext] Promise createRejectedPromise(any reason); | 284 [CallWith=ExecutionContext] Promise createRejectedPromise(any reason); |
| 283 [CallWith=ExecutionContext] Promise addOneToPromise(Promise promise); | 285 [CallWith=ExecutionContext] Promise addOneToPromise(Promise promise); |
| 284 | 286 |
| 285 void startSpeechInput(Element element); | 287 void startSpeechInput(Element element); |
| 286 void setValueForUser(Element element, DOMString value); | 288 void setValueForUser(Element element, DOMString value); |
| 287 | 289 |
| 288 DOMString textSurroundingNode(Node node, long x, long y, unsigned long maxLe
ngth); | 290 DOMString textSurroundingNode(Node node, long x, long y, unsigned long maxLe
ngth); |
| 289 }; | 291 }; |
| OLD | NEW |