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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
178 PassRefPtrWillBeRawPtr<ClientRect> bestZoomableAreaForTouchPoint(long x, lon
g y, long width, long height, Document*, ExceptionState&); | 178 PassRefPtrWillBeRawPtr<ClientRect> bestZoomableAreaForTouchPoint(long x, lon
g y, long width, long height, Document*, ExceptionState&); |
179 | 179 |
180 int lastSpellCheckRequestSequence(Document*, ExceptionState&); | 180 int lastSpellCheckRequestSequence(Document*, ExceptionState&); |
181 int lastSpellCheckProcessedSequence(Document*, ExceptionState&); | 181 int lastSpellCheckProcessedSequence(Document*, ExceptionState&); |
182 | 182 |
183 Vector<AtomicString> userPreferredLanguages() const; | 183 Vector<AtomicString> userPreferredLanguages() const; |
184 void setUserPreferredLanguages(const Vector<String>&); | 184 void setUserPreferredLanguages(const Vector<String>&); |
185 | 185 |
186 unsigned activeDOMObjectCount(Document*, ExceptionState&); | 186 unsigned activeDOMObjectCount(Document*, ExceptionState&); |
187 unsigned wheelEventHandlerCount(Document*, ExceptionState&); | 187 unsigned wheelEventHandlerCount(Document*, ExceptionState&); |
| 188 unsigned scrollEventHandlerCount(Document*, ExceptionState&); |
188 unsigned touchEventHandlerCount(Document*, ExceptionState&); | 189 unsigned touchEventHandlerCount(Document*, ExceptionState&); |
189 PassRefPtrWillBeRawPtr<LayerRectList> touchEventTargetLayerRects(Document*,
ExceptionState&); | 190 PassRefPtrWillBeRawPtr<LayerRectList> touchEventTargetLayerRects(Document*,
ExceptionState&); |
190 | 191 |
191 // This is used to test rect based hit testing like what's done on touch scr
eens. | 192 // This is used to test rect based hit testing like what's done on touch scr
eens. |
192 PassRefPtr<NodeList> nodesFromRect(Document*, int x, int y, unsigned topPadd
ing, unsigned rightPadding, | 193 PassRefPtr<NodeList> nodesFromRect(Document*, int x, int y, unsigned topPadd
ing, unsigned rightPadding, |
193 unsigned bottomPadding, unsigned leftPadding, bool ignoreClipping, bool
allowShadowContent, bool allowChildFrameContent, ExceptionState&) const; | 194 unsigned bottomPadding, unsigned leftPadding, bool ignoreClipping, bool
allowShadowContent, bool allowChildFrameContent, ExceptionState&) const; |
194 | 195 |
195 void emitInspectorDidBeginFrame(int frameId = 0); | 196 void emitInspectorDidBeginFrame(int frameId = 0); |
196 void emitInspectorDidCancelFrame(); | 197 void emitInspectorDidCancelFrame(); |
197 | 198 |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
335 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 336 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
336 RefPtrWillBeMember<DOMWindow> m_frontendWindow; | 337 RefPtrWillBeMember<DOMWindow> m_frontendWindow; |
337 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; | 338 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; |
338 RefPtrWillBeMember<InternalRuntimeFlags> m_runtimeFlags; | 339 RefPtrWillBeMember<InternalRuntimeFlags> m_runtimeFlags; |
339 RefPtrWillBeMember<InternalProfilers> m_profilers; | 340 RefPtrWillBeMember<InternalProfilers> m_profilers; |
340 }; | 341 }; |
341 | 342 |
342 } // namespace WebCore | 343 } // namespace WebCore |
343 | 344 |
344 #endif | 345 #endif |
OLD | NEW |