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

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

Issue 584303002: Clean up forward declarations in Source/core/page (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 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
« no previous file with comments | « Source/core/page/EditorClient.h ('k') | Source/core/page/FocusController.h » ('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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 class LocalFrame; 65 class LocalFrame;
66 class Node; 66 class Node;
67 class OptionalCursor; 67 class OptionalCursor;
68 class PlatformGestureEvent; 68 class PlatformGestureEvent;
69 class PlatformKeyboardEvent; 69 class PlatformKeyboardEvent;
70 class PlatformTouchEvent; 70 class PlatformTouchEvent;
71 class PlatformWheelEvent; 71 class PlatformWheelEvent;
72 class RenderLayer; 72 class RenderLayer;
73 class RenderLayerScrollableArea; 73 class RenderLayerScrollableArea;
74 class RenderObject; 74 class RenderObject;
75 class RenderWidget;
76 class ScrollableArea; 75 class ScrollableArea;
77 class Scrollbar; 76 class Scrollbar;
78 class TextEvent; 77 class TextEvent;
79 class TouchEvent;
80 class VisibleSelection; 78 class VisibleSelection;
81 class WheelEvent; 79 class WheelEvent;
82 class Widget; 80 class Widget;
83 81
84 typedef EventWithHitTestResults<PlatformGestureEvent> GestureEventWithHitTestRes ults; 82 typedef EventWithHitTestResults<PlatformGestureEvent> GestureEventWithHitTestRes ults;
85 typedef EventWithHitTestResults<PlatformMouseEvent> MouseEventWithHitTestResults ; 83 typedef EventWithHitTestResults<PlatformMouseEvent> MouseEventWithHitTestResults ;
86 84
87 enum AppendTrailingWhitespace { ShouldAppendTrailingWhitespace, DontAppendTraili ngWhitespace }; 85 enum AppendTrailingWhitespace { ShouldAppendTrailingWhitespace, DontAppendTraili ngWhitespace };
88 enum CheckDragHysteresis { ShouldCheckDragHysteresis, DontCheckDragHysteresis }; 86 enum CheckDragHysteresis { ShouldCheckDragHysteresis, DontCheckDragHysteresis };
89 87
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after
406 bool m_longTapShouldInvokeContextMenu; 404 bool m_longTapShouldInvokeContextMenu;
407 405
408 Timer<EventHandler> m_activeIntervalTimer; 406 Timer<EventHandler> m_activeIntervalTimer;
409 double m_lastShowPressTimestamp; 407 double m_lastShowPressTimestamp;
410 RefPtrWillBeMember<Element> m_lastDeferredTapElement; 408 RefPtrWillBeMember<Element> m_lastDeferredTapElement;
411 }; 409 };
412 410
413 } // namespace blink 411 } // namespace blink
414 412
415 #endif // EventHandler_h 413 #endif // EventHandler_h
OLDNEW
« no previous file with comments | « Source/core/page/EditorClient.h ('k') | Source/core/page/FocusController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698