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

Side by Side Diff: Source/core/page/EventHandler.h

Issue 82843003: Fire overflowchanged events at raf timing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add a test Created 7 years 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/frame/FrameView.cpp ('k') | Source/core/page/EventHandler.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) 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2009, 2010, 2011 Apple 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 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 163
164 bool handleTextInputEvent(const String& text, Event* underlyingEvent = 0, Te xtEventInputType = TextEventInputKeyboard); 164 bool handleTextInputEvent(const String& text, Event* underlyingEvent = 0, Te xtEventInputType = TextEventInputKeyboard);
165 void defaultTextInputEventHandler(TextEvent*); 165 void defaultTextInputEventHandler(TextEvent*);
166 166
167 void dragSourceEndedAt(const PlatformMouseEvent&, DragOperation); 167 void dragSourceEndedAt(const PlatformMouseEvent&, DragOperation);
168 168
169 void focusDocumentView(); 169 void focusDocumentView();
170 170
171 void capsLockStateMayHaveChanged(); // Only called by FrameSelection 171 void capsLockStateMayHaveChanged(); // Only called by FrameSelection
172 172
173 void sendResizeEvent(); // Only called in FrameView 173 void sendScrollEvent(); // Only called in FrameView
174 void sendScrollEvent(); // Ditto
175 174
176 bool handleTouchEvent(const PlatformTouchEvent&); 175 bool handleTouchEvent(const PlatformTouchEvent&);
177 176
178 bool useHandCursor(Node*, bool isOverLink, bool shiftKey); 177 bool useHandCursor(Node*, bool isOverLink, bool shiftKey);
179 178
180 private: 179 private:
181 static DragState& dragState(); 180 static DragState& dragState();
182 181
183 PassRefPtr<Clipboard> createDraggingClipboard() const; 182 PassRefPtr<Clipboard> createDraggingClipboard() const;
184 183
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
375 bool m_longTapShouldInvokeContextMenu; 374 bool m_longTapShouldInvokeContextMenu;
376 OwnPtr<IntPoint> m_lastSyntheticPinchAnchorCss; 375 OwnPtr<IntPoint> m_lastSyntheticPinchAnchorCss;
377 OwnPtr<IntPoint> m_lastSyntheticPinchAnchorDip; 376 OwnPtr<IntPoint> m_lastSyntheticPinchAnchorDip;
378 OwnPtr<IntPoint> m_lastSyntheticPanLocation; 377 OwnPtr<IntPoint> m_lastSyntheticPanLocation;
379 float m_syntheticPageScaleFactor; 378 float m_syntheticPageScaleFactor;
380 }; 379 };
381 380
382 } // namespace WebCore 381 } // namespace WebCore
383 382
384 #endif // EventHandler_h 383 #endif // EventHandler_h
OLDNEW
« no previous file with comments | « Source/core/frame/FrameView.cpp ('k') | Source/core/page/EventHandler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698