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

Unified Diff: third_party/WebKit/Source/core/input/EventHandler.cpp

Issue 1362973004: Rename FROM_HERE to BLINK_FROM_HERE. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update Created 5 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/input/EventHandler.cpp
diff --git a/third_party/WebKit/Source/core/input/EventHandler.cpp b/third_party/WebKit/Source/core/input/EventHandler.cpp
index c53e2ab02a99c3499f627a0083dae364793f4d6f..9f2c947f8375e64fe7fb268b6c4c169a897325f1 100644
--- a/third_party/WebKit/Source/core/input/EventHandler.cpp
+++ b/third_party/WebKit/Source/core/input/EventHandler.cpp
@@ -2646,7 +2646,7 @@ GestureEventWithHitTestResults EventHandler::targetGestureEvent(const PlatformGe
if (shouldKeepActiveForMinInterval) {
m_lastDeferredTapElement = eventWithHitTestResults.hitTestResult().innerElement();
- m_activeIntervalTimer.startOneShot(minimumActiveInterval - activeInterval, FROM_HERE);
+ m_activeIntervalTimer.startOneShot(minimumActiveInterval - activeInterval, BLINK_FROM_HERE);
}
return eventWithHitTestResults;
@@ -2873,7 +2873,7 @@ bool EventHandler::sendContextMenuEventForGesture(const GestureEventWithHitTestR
void EventHandler::scheduleHoverStateUpdate()
{
if (!m_hoverTimer.isActive())
- m_hoverTimer.startOneShot(0, FROM_HERE);
+ m_hoverTimer.startOneShot(0, BLINK_FROM_HERE);
}
void EventHandler::scheduleCursorUpdate()
@@ -2883,7 +2883,7 @@ void EventHandler::scheduleCursorUpdate()
ASSERT(m_frame == m_frame->localFrameRoot());
if (!m_cursorUpdateTimer.isActive())
- m_cursorUpdateTimer.startOneShot(cursorUpdateInterval, FROM_HERE);
+ m_cursorUpdateTimer.startOneShot(cursorUpdateInterval, BLINK_FROM_HERE);
}
bool EventHandler::cursorUpdatePending()
@@ -2907,7 +2907,7 @@ void EventHandler::dispatchFakeMouseMoveEventSoon()
// during a scroll. This avoids a potential source of scroll jank.
if (m_fakeMouseMoveEventTimer.isActive())
m_fakeMouseMoveEventTimer.stop();
- m_fakeMouseMoveEventTimer.startOneShot(fakeMouseMoveInterval, FROM_HERE);
+ m_fakeMouseMoveEventTimer.startOneShot(fakeMouseMoveInterval, BLINK_FROM_HERE);
}
void EventHandler::dispatchFakeMouseMoveEventSoonInQuad(const FloatQuad& quad)

Powered by Google App Engine
This is Rietveld 408576698