| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 | 110 |
| 111 Range rangeFromLocationAndLength(in Element scope, in long rangeLocation
, in long rangeLength) raises (DOMException); | 111 Range rangeFromLocationAndLength(in Element scope, in long rangeLocation
, in long rangeLength) raises (DOMException); |
| 112 unsigned long locationFromRange(in Element scope, in Range range) raises
(DOMException); | 112 unsigned long locationFromRange(in Element scope, in Range range) raises
(DOMException); |
| 113 unsigned long lengthFromRange(in Element scope, in Range range) raises (
DOMException); | 113 unsigned long lengthFromRange(in Element scope, in Range range) raises (
DOMException); |
| 114 DOMString rangeAsText(in Range range) raises (DOMException); | 114 DOMString rangeAsText(in Range range) raises (DOMException); |
| 115 | 115 |
| 116 void setDelegatesScrolling(in boolean enabled, in Document document) rai
ses (DOMException); | 116 void setDelegatesScrolling(in boolean enabled, in Document document) rai
ses (DOMException); |
| 117 #if defined(ENABLE_TOUCH_ADJUSTMENT) && ENABLE_TOUCH_ADJUSTMENT | 117 #if defined(ENABLE_TOUCH_ADJUSTMENT) && ENABLE_TOUCH_ADJUSTMENT |
| 118 WebKitPoint touchPositionAdjustedToBestClickableNode(in long x, in long
y, in long width, in long height, in Document document) raises (DOMException); | 118 WebKitPoint touchPositionAdjustedToBestClickableNode(in long x, in long
y, in long width, in long height, in Document document) raises (DOMException); |
| 119 Node touchNodeAdjustedToBestClickableNode(in long x, in long y, in long
width, in long height, in Document document) raises (DOMException); | 119 Node touchNodeAdjustedToBestClickableNode(in long x, in long y, in long
width, in long height, in Document document) raises (DOMException); |
| 120 WebKitPoint touchPositionAdjustedToBestContextMenuNode(in long x, in lon
g y, in long width, in long height, in Document document) raises (DOMException); |
| 121 Node touchNodeAdjustedToBestContextMenuNode(in long x, in long y, in lon
g width, in long height, in Document document) raises (DOMException); |
| 120 ClientRect bestZoomableAreaForTouchPoint(in long x, in long y, in long w
idth, in long height, in Document document) raises (DOMException); | 122 ClientRect bestZoomableAreaForTouchPoint(in long x, in long y, in long w
idth, in long height, in Document document) raises (DOMException); |
| 121 #endif | 123 #endif |
| 122 | 124 |
| 123 long lastSpellCheckRequestSequence(in Document document) raises (DOMExce
ption); | 125 long lastSpellCheckRequestSequence(in Document document) raises (DOMExce
ption); |
| 124 long lastSpellCheckProcessedSequence(in Document document) raises (DOMEx
ception); | 126 long lastSpellCheckProcessedSequence(in Document document) raises (DOMEx
ception); |
| 125 | 127 |
| 126 #if defined(ENABLE_VIDEO_TRACK) && ENABLE_VIDEO_TRACK | 128 #if defined(ENABLE_VIDEO_TRACK) && ENABLE_VIDEO_TRACK |
| 127 void setShouldDisplayTrackKind(in Document document, in DOMString kind,
in boolean enabled) raises (DOMException); | 129 void setShouldDisplayTrackKind(in Document document, in DOMString kind,
in boolean enabled) raises (DOMException); |
| 128 boolean shouldDisplayTrackKind(in Document document, in DOMString trackK
ind) raises (DOMException); | 130 boolean shouldDisplayTrackKind(in Document document, in DOMString trackK
ind) raises (DOMException); |
| 129 #endif | 131 #endif |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 #if defined(ENABLE_FULLSCREEN_API) && ENABLE_FULLSCREEN_API | 180 #if defined(ENABLE_FULLSCREEN_API) && ENABLE_FULLSCREEN_API |
| 179 void webkitWillEnterFullScreenForElement(in Document document, in Elemen
t element); | 181 void webkitWillEnterFullScreenForElement(in Document document, in Elemen
t element); |
| 180 void webkitDidEnterFullScreenForElement(in Document document, in Element
element); | 182 void webkitDidEnterFullScreenForElement(in Document document, in Element
element); |
| 181 void webkitWillExitFullScreenForElement(in Document document, in Element
element); | 183 void webkitWillExitFullScreenForElement(in Document document, in Element
element); |
| 182 void webkitDidExitFullScreenForElement(in Document document, in Element
element); | 184 void webkitDidExitFullScreenForElement(in Document document, in Element
element); |
| 183 #endif | 185 #endif |
| 184 | 186 |
| 185 void registerURLSchemeAsBypassingContentSecurityPolicy(in DOMString sche
me); | 187 void registerURLSchemeAsBypassingContentSecurityPolicy(in DOMString sche
me); |
| 186 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(in DOMStr
ing scheme); | 188 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(in DOMStr
ing scheme); |
| 187 | 189 |
| 188 FastMallocStatistics fastMallocStatistics(); | 190 MallocStatistics mallocStatistics(); |
| 191 |
| 192 DOMString[] getReferencedFilePaths(); |
| 189 }; | 193 }; |
| 190 } | 194 } |
| 191 | 195 |
| OLD | NEW |