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

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

Issue 23672027: Rename OS(WINDOWS) to OS(WIN) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 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/DragController.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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 ~EventHandler(); 92 ~EventHandler();
93 93
94 void clear(); 94 void clear();
95 void nodeWillBeRemoved(Node*); 95 void nodeWillBeRemoved(Node*);
96 96
97 void updateSelectionForMouseDrag(); 97 void updateSelectionForMouseDrag();
98 98
99 Node* mousePressNode() const; 99 Node* mousePressNode() const;
100 void setMousePressNode(PassRefPtr<Node>); 100 void setMousePressNode(PassRefPtr<Node>);
101 101
102 #if OS(WINDOWS) 102 #if OS(WIN)
103 void startPanScrolling(RenderObject*); 103 void startPanScrolling(RenderObject*);
104 #endif 104 #endif
105 105
106 void stopAutoscrollTimer(); 106 void stopAutoscrollTimer();
107 bool mouseDownWasInSubframe() const { return m_mouseDownWasInSubframe; } 107 bool mouseDownWasInSubframe() const { return m_mouseDownWasInSubframe; }
108 108
109 void dispatchFakeMouseMoveEventSoon(); 109 void dispatchFakeMouseMoveEventSoon();
110 void dispatchFakeMouseMoveEventSoonInQuad(const FloatQuad&); 110 void dispatchFakeMouseMoveEventSoonInQuad(const FloatQuad&);
111 111
112 HitTestResult hitTestResultAtPoint(const LayoutPoint&, 112 HitTestResult hitTestResultAtPoint(const LayoutPoint&,
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
380 double m_maxMouseMovedDuration; 380 double m_maxMouseMovedDuration;
381 PlatformEvent::Type m_baseEventType; 381 PlatformEvent::Type m_baseEventType;
382 bool m_didStartDrag; 382 bool m_didStartDrag;
383 383
384 bool m_longTapShouldInvokeContextMenu; 384 bool m_longTapShouldInvokeContextMenu;
385 }; 385 };
386 386
387 } // namespace WebCore 387 } // namespace WebCore
388 388
389 #endif // EventHandler_h 389 #endif // EventHandler_h
OLDNEW
« no previous file with comments | « Source/core/page/DragController.cpp ('k') | Source/core/page/EventHandler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698