Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(129)

Side by Side Diff: Source/core/testing/Internals.h

Issue 14280004: Revert removal of events (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/testing/InternalSettings.cpp ('k') | Source/core/testing/Internals.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 PassRefPtr<ClientRect> bestZoomableAreaForTouchPoint(long x, long y, long wi dth, long height, Document*, ExceptionCode&); 172 PassRefPtr<ClientRect> bestZoomableAreaForTouchPoint(long x, long y, long wi dth, long height, Document*, ExceptionCode&);
173 173
174 int lastSpellCheckRequestSequence(Document*, ExceptionCode&); 174 int lastSpellCheckRequestSequence(Document*, ExceptionCode&);
175 int lastSpellCheckProcessedSequence(Document*, ExceptionCode&); 175 int lastSpellCheckProcessedSequence(Document*, ExceptionCode&);
176 176
177 Vector<String> userPreferredLanguages() const; 177 Vector<String> userPreferredLanguages() const;
178 void setUserPreferredLanguages(const Vector<String>&); 178 void setUserPreferredLanguages(const Vector<String>&);
179 179
180 unsigned wheelEventHandlerCount(Document*, ExceptionCode&); 180 unsigned wheelEventHandlerCount(Document*, ExceptionCode&);
181 unsigned touchEventHandlerCount(Document*, ExceptionCode&); 181 unsigned touchEventHandlerCount(Document*, ExceptionCode&);
182 #if ENABLE(TOUCH_EVENT_TRACKING)
182 PassRefPtr<ClientRectList> touchEventTargetClientRects(Document*, ExceptionC ode&); 183 PassRefPtr<ClientRectList> touchEventTargetClientRects(Document*, ExceptionC ode&);
184 #endif
183 185
184 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,
185 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;
186 188
187 void emitInspectorDidBeginFrame(); 189 void emitInspectorDidBeginFrame();
188 void emitInspectorDidCancelFrame(); 190 void emitInspectorDidCancelFrame();
189 191
190 bool hasSpellingMarker(Document*, int from, int length, ExceptionCode&); 192 bool hasSpellingMarker(Document*, int from, int length, ExceptionCode&);
191 bool hasGrammarMarker(Document*, int from, int length, ExceptionCode&); 193 bool hasGrammarMarker(Document*, int from, int length, ExceptionCode&);
192 bool hasAutocorrectedMarker(Document*, int from, int length, ExceptionCode&) ; 194 bool hasAutocorrectedMarker(Document*, int from, int length, ExceptionCode&) ;
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 Vector<String> iconURLs(Document*, int iconTypesMask) const; 297 Vector<String> iconURLs(Document*, int iconTypesMask) const;
296 298
297 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionCode&); 299 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionCode&);
298 RefPtr<DOMWindow> m_frontendWindow; 300 RefPtr<DOMWindow> m_frontendWindow;
299 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; 301 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel;
300 }; 302 };
301 303
302 } // namespace WebCore 304 } // namespace WebCore
303 305
304 #endif 306 #endif
OLDNEW
« no previous file with comments | « Source/core/testing/InternalSettings.cpp ('k') | Source/core/testing/Internals.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698