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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 void setAutofilled(Element*, bool enabled, ExceptionCode&); | 163 void setAutofilled(Element*, bool enabled, ExceptionCode&); |
164 void scrollElementToRect(Element*, long x, long y, long w, long h, Exception
Code&); | 164 void scrollElementToRect(Element*, long x, long y, long w, long h, Exception
Code&); |
165 | 165 |
166 void paintControlTints(Document*, ExceptionCode&); | 166 void paintControlTints(Document*, ExceptionCode&); |
167 | 167 |
168 PassRefPtr<Range> rangeFromLocationAndLength(Element* scope, int rangeLocati
on, int rangeLength, ExceptionCode&); | 168 PassRefPtr<Range> rangeFromLocationAndLength(Element* scope, int rangeLocati
on, int rangeLength, ExceptionCode&); |
169 unsigned locationFromRange(Element* scope, const Range*, ExceptionCode&); | 169 unsigned locationFromRange(Element* scope, const Range*, ExceptionCode&); |
170 unsigned lengthFromRange(Element* scope, const Range*, ExceptionCode&); | 170 unsigned lengthFromRange(Element* scope, const Range*, ExceptionCode&); |
171 String rangeAsText(const Range*, ExceptionCode&); | 171 String rangeAsText(const Range*, ExceptionCode&); |
172 | 172 |
173 void setDelegatesScrolling(bool enabled, Document*, ExceptionCode&); | |
174 #if ENABLE(TOUCH_ADJUSTMENT) | 173 #if ENABLE(TOUCH_ADJUSTMENT) |
175 PassRefPtr<DOMPoint> touchPositionAdjustedToBestClickableNode(long x, long y
, long width, long height, Document*, ExceptionCode&); | 174 PassRefPtr<DOMPoint> touchPositionAdjustedToBestClickableNode(long x, long y
, long width, long height, Document*, ExceptionCode&); |
176 Node* touchNodeAdjustedToBestClickableNode(long x, long y, long width, long
height, Document*, ExceptionCode&); | 175 Node* touchNodeAdjustedToBestClickableNode(long x, long y, long width, long
height, Document*, ExceptionCode&); |
177 PassRefPtr<DOMPoint> touchPositionAdjustedToBestContextMenuNode(long x, long
y, long width, long height, Document*, ExceptionCode&); | 176 PassRefPtr<DOMPoint> touchPositionAdjustedToBestContextMenuNode(long x, long
y, long width, long height, Document*, ExceptionCode&); |
178 Node* touchNodeAdjustedToBestContextMenuNode(long x, long y, long width, lon
g height, Document*, ExceptionCode&); | 177 Node* touchNodeAdjustedToBestContextMenuNode(long x, long y, long width, lon
g height, Document*, ExceptionCode&); |
179 PassRefPtr<ClientRect> bestZoomableAreaForTouchPoint(long x, long y, long wi
dth, long height, Document*, ExceptionCode&); | 178 PassRefPtr<ClientRect> bestZoomableAreaForTouchPoint(long x, long y, long wi
dth, long height, Document*, ExceptionCode&); |
180 #endif | 179 #endif |
181 | 180 |
182 int lastSpellCheckRequestSequence(Document*, ExceptionCode&); | 181 int lastSpellCheckRequestSequence(Document*, ExceptionCode&); |
183 int lastSpellCheckProcessedSequence(Document*, ExceptionCode&); | 182 int lastSpellCheckProcessedSequence(Document*, ExceptionCode&); |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
314 Vector<String> iconURLs(Document*, int iconTypesMask) const; | 313 Vector<String> iconURLs(Document*, int iconTypesMask) const; |
315 | 314 |
316 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionCode&); | 315 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionCode&); |
317 RefPtr<DOMWindow> m_frontendWindow; | 316 RefPtr<DOMWindow> m_frontendWindow; |
318 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; | 317 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; |
319 }; | 318 }; |
320 | 319 |
321 } // namespace WebCore | 320 } // namespace WebCore |
322 | 321 |
323 #endif | 322 #endif |
OLD | NEW |