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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 #endif | 174 #endif |
175 | 175 |
176 int lastSpellCheckRequestSequence(Document*, ExceptionCode&); | 176 int lastSpellCheckRequestSequence(Document*, ExceptionCode&); |
177 int lastSpellCheckProcessedSequence(Document*, ExceptionCode&); | 177 int lastSpellCheckProcessedSequence(Document*, ExceptionCode&); |
178 | 178 |
179 Vector<String> userPreferredLanguages() const; | 179 Vector<String> userPreferredLanguages() const; |
180 void setUserPreferredLanguages(const Vector<String>&); | 180 void setUserPreferredLanguages(const Vector<String>&); |
181 | 181 |
182 unsigned wheelEventHandlerCount(Document*, ExceptionCode&); | 182 unsigned wheelEventHandlerCount(Document*, ExceptionCode&); |
183 unsigned touchEventHandlerCount(Document*, ExceptionCode&); | 183 unsigned touchEventHandlerCount(Document*, ExceptionCode&); |
184 #if ENABLE(TOUCH_EVENT_TRACKING) | |
185 PassRefPtr<ClientRectList> touchEventTargetClientRects(Document*, ExceptionC
ode&); | 184 PassRefPtr<ClientRectList> touchEventTargetClientRects(Document*, ExceptionC
ode&); |
186 #endif | |
187 | 185 |
188 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, |
189 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; |
190 | 188 |
191 void emitInspectorDidBeginFrame(); | 189 void emitInspectorDidBeginFrame(); |
192 void emitInspectorDidCancelFrame(); | 190 void emitInspectorDidCancelFrame(); |
193 | 191 |
194 bool hasSpellingMarker(Document*, int from, int length, ExceptionCode&); | 192 bool hasSpellingMarker(Document*, int from, int length, ExceptionCode&); |
195 bool hasGrammarMarker(Document*, int from, int length, ExceptionCode&); | 193 bool hasGrammarMarker(Document*, int from, int length, ExceptionCode&); |
196 bool hasAutocorrectedMarker(Document*, int from, int length, ExceptionCode&)
; | 194 bool hasAutocorrectedMarker(Document*, int from, int length, ExceptionCode&)
; |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
306 Vector<String> iconURLs(Document*, int iconTypesMask) const; | 304 Vector<String> iconURLs(Document*, int iconTypesMask) const; |
307 | 305 |
308 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionCode&); | 306 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionCode&); |
309 RefPtr<DOMWindow> m_frontendWindow; | 307 RefPtr<DOMWindow> m_frontendWindow; |
310 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; | 308 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; |
311 }; | 309 }; |
312 | 310 |
313 } // namespace WebCore | 311 } // namespace WebCore |
314 | 312 |
315 #endif | 313 #endif |
OLD | NEW |