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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 PassRefPtr<ClientRect> bestZoomableAreaForTouchPoint(long x, long y, long wi
dth, long height, Document*, ExceptionCode&); | 172 PassRefPtr<ClientRect> bestZoomableAreaForTouchPoint(long x, long y, long wi
dth, long height, Document*, ExceptionCode&); |
173 | 173 |
174 int lastSpellCheckRequestSequence(Document*, ExceptionCode&); | 174 int lastSpellCheckRequestSequence(Document*, ExceptionCode&); |
175 int lastSpellCheckProcessedSequence(Document*, ExceptionCode&); | 175 int lastSpellCheckProcessedSequence(Document*, ExceptionCode&); |
176 | 176 |
177 Vector<String> userPreferredLanguages() const; | 177 Vector<String> userPreferredLanguages() const; |
178 void setUserPreferredLanguages(const Vector<String>&); | 178 void setUserPreferredLanguages(const Vector<String>&); |
179 | 179 |
180 unsigned wheelEventHandlerCount(Document*, ExceptionCode&); | 180 unsigned wheelEventHandlerCount(Document*, ExceptionCode&); |
181 unsigned touchEventHandlerCount(Document*, ExceptionCode&); | 181 unsigned touchEventHandlerCount(Document*, ExceptionCode&); |
| 182 #if ENABLE(TOUCH_EVENT_TRACKING) |
182 PassRefPtr<ClientRectList> touchEventTargetClientRects(Document*, ExceptionC
ode&); | 183 PassRefPtr<ClientRectList> touchEventTargetClientRects(Document*, ExceptionC
ode&); |
| 184 #endif |
183 | 185 |
184 PassRefPtr<NodeList> nodesFromRect(Document*, int x, int y, unsigned topPadd
ing, unsigned rightPadding, | 186 PassRefPtr<NodeList> nodesFromRect(Document*, int x, int y, unsigned topPadd
ing, unsigned rightPadding, |
185 unsigned bottomPadding, unsigned leftPadding, bool ignoreClipping, bool
allowShadowContent, bool allowChildFrameContent, ExceptionCode&) const; | 187 unsigned bottomPadding, unsigned leftPadding, bool ignoreClipping, bool
allowShadowContent, bool allowChildFrameContent, ExceptionCode&) const; |
186 | 188 |
187 void emitInspectorDidBeginFrame(); | 189 void emitInspectorDidBeginFrame(); |
188 void emitInspectorDidCancelFrame(); | 190 void emitInspectorDidCancelFrame(); |
189 | 191 |
190 bool hasSpellingMarker(Document*, int from, int length, ExceptionCode&); | 192 bool hasSpellingMarker(Document*, int from, int length, ExceptionCode&); |
191 bool hasGrammarMarker(Document*, int from, int length, ExceptionCode&); | 193 bool hasGrammarMarker(Document*, int from, int length, ExceptionCode&); |
192 bool hasAutocorrectedMarker(Document*, int from, int length, ExceptionCode&)
; | 194 bool hasAutocorrectedMarker(Document*, int from, int length, ExceptionCode&)
; |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
295 Vector<String> iconURLs(Document*, int iconTypesMask) const; | 297 Vector<String> iconURLs(Document*, int iconTypesMask) const; |
296 | 298 |
297 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionCode&); | 299 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionCode&); |
298 RefPtr<DOMWindow> m_frontendWindow; | 300 RefPtr<DOMWindow> m_frontendWindow; |
299 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; | 301 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; |
300 }; | 302 }; |
301 | 303 |
302 } // namespace WebCore | 304 } // namespace WebCore |
303 | 305 |
304 #endif | 306 #endif |
OLD | NEW |