| 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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 void setUserPreferredLanguages(const Vector<String>&); | 179 void setUserPreferredLanguages(const Vector<String>&); |
| 180 | 180 |
| 181 unsigned wheelEventHandlerCount(Document*, ExceptionState&); | 181 unsigned wheelEventHandlerCount(Document*, ExceptionState&); |
| 182 unsigned touchEventHandlerCount(Document*, ExceptionState&); | 182 unsigned touchEventHandlerCount(Document*, ExceptionState&); |
| 183 PassRefPtr<LayerRectList> touchEventTargetLayerRects(Document*, ExceptionSta
te&); | 183 PassRefPtr<LayerRectList> touchEventTargetLayerRects(Document*, ExceptionSta
te&); |
| 184 | 184 |
| 185 // This is used to test rect based hit testing like what's done on touch scr
eens. | 185 // This is used to test rect based hit testing like what's done on touch scr
eens. |
| 186 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, |
| 187 unsigned bottomPadding, unsigned leftPadding, bool ignoreClipping, bool
allowShadowContent, bool allowChildFrameContent, ExceptionState&) const; | 187 unsigned bottomPadding, unsigned leftPadding, bool ignoreClipping, bool
allowShadowContent, bool allowChildFrameContent, ExceptionState&) const; |
| 188 | 188 |
| 189 void emitInspectorDidBeginFrame(); | 189 void emitInspectorDidBeginFrame(int frameId = 0); |
| 190 void emitInspectorDidCancelFrame(); | 190 void emitInspectorDidCancelFrame(); |
| 191 | 191 |
| 192 bool hasSpellingMarker(Document*, int from, int length, ExceptionState&); | 192 bool hasSpellingMarker(Document*, int from, int length, ExceptionState&); |
| 193 bool hasGrammarMarker(Document*, int from, int length, ExceptionState&); | 193 bool hasGrammarMarker(Document*, int from, int length, ExceptionState&); |
| 194 void setContinuousSpellCheckingEnabled(bool enabled, ExceptionState&); | 194 void setContinuousSpellCheckingEnabled(bool enabled, ExceptionState&); |
| 195 | 195 |
| 196 bool isOverwriteModeEnabled(Document*, ExceptionState&); | 196 bool isOverwriteModeEnabled(Document*, ExceptionState&); |
| 197 void toggleOverwriteModeEnabled(Document*, ExceptionState&); | 197 void toggleOverwriteModeEnabled(Document*, ExceptionState&); |
| 198 | 198 |
| 199 unsigned numberOfScrollableAreas(Document*, ExceptionState&); | 199 unsigned numberOfScrollableAreas(Document*, ExceptionState&); |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 RefPtr<DOMWindow> m_frontendWindow; | 308 RefPtr<DOMWindow> m_frontendWindow; |
| 309 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; | 309 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; |
| 310 RefPtr<InternalRuntimeFlags> m_runtimeFlags; | 310 RefPtr<InternalRuntimeFlags> m_runtimeFlags; |
| 311 RefPtr<ScrollingCoordinator> m_scrollingCoordinator; | 311 RefPtr<ScrollingCoordinator> m_scrollingCoordinator; |
| 312 RefPtr<InternalProfilers> m_profilers; | 312 RefPtr<InternalProfilers> m_profilers; |
| 313 }; | 313 }; |
| 314 | 314 |
| 315 } // namespace WebCore | 315 } // namespace WebCore |
| 316 | 316 |
| 317 #endif | 317 #endif |
| OLD | NEW |