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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 #endif | 164 #endif |
165 | 165 |
166 int lastSpellCheckRequestSequence(Document*, ExceptionCode&); | 166 int lastSpellCheckRequestSequence(Document*, ExceptionCode&); |
167 int lastSpellCheckProcessedSequence(Document*, ExceptionCode&); | 167 int lastSpellCheckProcessedSequence(Document*, ExceptionCode&); |
168 | 168 |
169 Vector<String> userPreferredLanguages() const; | 169 Vector<String> userPreferredLanguages() const; |
170 void setUserPreferredLanguages(const Vector<String>&); | 170 void setUserPreferredLanguages(const Vector<String>&); |
171 | 171 |
172 unsigned wheelEventHandlerCount(Document*, ExceptionCode&); | 172 unsigned wheelEventHandlerCount(Document*, ExceptionCode&); |
173 unsigned touchEventHandlerCount(Document*, ExceptionCode&); | 173 unsigned touchEventHandlerCount(Document*, ExceptionCode&); |
174 #if ENABLE(TOUCH_EVENT_TRACKING) | |
175 PassRefPtr<ClientRectList> touchEventTargetClientRects(Document*, ExceptionC
ode&); | |
176 #endif | |
177 | 174 |
178 PassRefPtr<NodeList> nodesFromRect(Document*, int x, int y, unsigned topPadd
ing, unsigned rightPadding, | 175 PassRefPtr<NodeList> nodesFromRect(Document*, int x, int y, unsigned topPadd
ing, unsigned rightPadding, |
179 unsigned bottomPadding, unsigned leftPadding, bool ignoreClipping, bool
allowShadowContent, ExceptionCode&) const; | 176 unsigned bottomPadding, unsigned leftPadding, bool ignoreClipping, bool
allowShadowContent, ExceptionCode&) const; |
180 | 177 |
181 void emitInspectorDidBeginFrame(); | 178 void emitInspectorDidBeginFrame(); |
182 void emitInspectorDidCancelFrame(); | 179 void emitInspectorDidCancelFrame(); |
183 | 180 |
184 bool hasSpellingMarker(Document*, int from, int length, ExceptionCode&); | 181 bool hasSpellingMarker(Document*, int from, int length, ExceptionCode&); |
185 bool hasGrammarMarker(Document*, int from, int length, ExceptionCode&); | 182 bool hasGrammarMarker(Document*, int from, int length, ExceptionCode&); |
186 bool hasAutocorrectedMarker(Document*, int from, int length, ExceptionCode&)
; | 183 bool hasAutocorrectedMarker(Document*, int from, int length, ExceptionCode&)
; |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
274 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionCode&); | 271 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionCode&); |
275 #if ENABLE(INSPECTOR) | 272 #if ENABLE(INSPECTOR) |
276 RefPtr<DOMWindow> m_frontendWindow; | 273 RefPtr<DOMWindow> m_frontendWindow; |
277 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; | 274 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; |
278 #endif | 275 #endif |
279 }; | 276 }; |
280 | 277 |
281 } // namespace WebCore | 278 } // namespace WebCore |
282 | 279 |
283 #endif | 280 #endif |
OLD | NEW |