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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 #endif | 132 #endif |
133 | 133 |
134 long lastSpellCheckRequestSequence(in Document document) raises (DOMExceptio
n); | 134 long lastSpellCheckRequestSequence(in Document document) raises (DOMExceptio
n); |
135 long lastSpellCheckProcessedSequence(in Document document) raises (DOMExcept
ion); | 135 long lastSpellCheckProcessedSequence(in Document document) raises (DOMExcept
ion); |
136 | 136 |
137 sequence<DOMString> userPreferredLanguages(); | 137 sequence<DOMString> userPreferredLanguages(); |
138 void setUserPreferredLanguages(in sequence<DOMString> languages); | 138 void setUserPreferredLanguages(in sequence<DOMString> languages); |
139 | 139 |
140 unsigned long wheelEventHandlerCount(in Document document) raises (DOMExcept
ion); | 140 unsigned long wheelEventHandlerCount(in Document document) raises (DOMExcept
ion); |
141 unsigned long touchEventHandlerCount(in Document document) raises (DOMExcept
ion); | 141 unsigned long touchEventHandlerCount(in Document document) raises (DOMExcept
ion); |
142 #if defined(ENABLE_TOUCH_EVENT_TRACKING) && ENABLE_TOUCH_EVENT_TRACKING | |
143 ClientRectList touchEventTargetClientRects(in Document document) raises (DOM
Exception); | |
144 #endif | |
145 | 142 |
146 NodeList nodesFromRect(in Document document, in long x, in long y, | 143 NodeList nodesFromRect(in Document document, in long x, in long y, |
147 in unsigned long topPadding, in unsigned long rightPadding, in unsigned
long bottomPadding, in unsigned long leftPadding, | 144 in unsigned long topPadding, in unsigned long rightPadding, in unsigned
long bottomPadding, in unsigned long leftPadding, |
148 in boolean ignoreClipping, in boolean allowShadowContent) raises (DOMExc
eption); | 145 in boolean ignoreClipping, in boolean allowShadowContent) raises (DOMExc
eption); |
149 | 146 |
150 void emitInspectorDidBeginFrame(); | 147 void emitInspectorDidBeginFrame(); |
151 void emitInspectorDidCancelFrame(); | 148 void emitInspectorDidCancelFrame(); |
152 | 149 |
153 boolean hasSpellingMarker(in Document document, in long from, in long length
) raises (DOMException); | 150 boolean hasSpellingMarker(in Document document, in long from, in long length
) raises (DOMException); |
154 boolean hasGrammarMarker(in Document document, in long from, in long length)
raises (DOMException); | 151 boolean hasGrammarMarker(in Document document, in long from, in long length)
raises (DOMException); |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
226 void stopTrackingRepaints(in Document document) raises (DOMException); | 223 void stopTrackingRepaints(in Document document) raises (DOMException); |
227 | 224 |
228 // Returns a string with information about the mouse cursor used at the spec
ified client location. | 225 // Returns a string with information about the mouse cursor used at the spec
ified client location. |
229 DOMString getCurrentCursorInfo(in Document document) raises (DOMException); | 226 DOMString getCurrentCursorInfo(in Document document) raises (DOMException); |
230 | 227 |
231 SerializedScriptValue deserializeBuffer(in ArrayBuffer buffer); | 228 SerializedScriptValue deserializeBuffer(in ArrayBuffer buffer); |
232 ArrayBuffer serializeObject(in SerializedScriptValue obj); | 229 ArrayBuffer serializeObject(in SerializedScriptValue obj); |
233 | 230 |
234 void setUsesOverlayScrollbars(in boolean enabled); | 231 void setUsesOverlayScrollbars(in boolean enabled); |
235 }; | 232 }; |
OLD | NEW |