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