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

Unified Diff: third_party/WebKit/Source/core/dom/Fullscreen.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/dom/Fullscreen.cpp
diff --git a/third_party/WebKit/Source/core/dom/Fullscreen.cpp b/third_party/WebKit/Source/core/dom/Fullscreen.cpp
index bc34c3f83af5c6dec61fe4e88654127c0c426aed..1941a4d1802aab2c77ecfc4ea35b76f299bfce22 100644
--- a/third_party/WebKit/Source/core/dom/Fullscreen.cpp
+++ b/third_party/WebKit/Source/core/dom/Fullscreen.cpp
@@ -440,7 +440,7 @@ void Fullscreen::didEnterFullScreenForElement(Element* element)
if (document()->frame())
document()->frame()->eventHandler().scheduleHoverStateUpdate();
- m_eventQueueTimer.startOneShot(0, FROM_HERE);
+ m_eventQueueTimer.startOneShot(0, BLINK_FROM_HERE);
}
void Fullscreen::didExitFullScreenForElement(Element*)
@@ -469,7 +469,7 @@ void Fullscreen::didExitFullScreenForElement(Element*)
if (m_eventQueue.isEmpty())
exitingDocument = &document()->topDocument();
ASSERT(exitingDocument);
- from(*exitingDocument).m_eventQueueTimer.startOneShot(0, FROM_HERE);
+ from(*exitingDocument).m_eventQueueTimer.startOneShot(0, BLINK_FROM_HERE);
}
void Fullscreen::didUpdateSize(Element& element)
@@ -507,7 +507,7 @@ void Fullscreen::enqueueErrorEvent(Element& element, RequestType requestType)
else
event = createEvent(EventTypeNames::webkitfullscreenerror, element);
m_eventQueue.append(event);
- m_eventQueueTimer.startOneShot(0, FROM_HERE);
+ m_eventQueueTimer.startOneShot(0, BLINK_FROM_HERE);
}
void Fullscreen::eventQueueTimerFired(Timer<Fullscreen>*)
« no previous file with comments | « third_party/WebKit/Source/core/dom/ExecutionContext.cpp ('k') | third_party/WebKit/Source/core/dom/MainThreadTaskRunner.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698