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

Unified Diff: Source/core/dom/Document.cpp

Issue 1277483005: Oilpan: fix build after r200105. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/Document.cpp
diff --git a/Source/core/dom/Document.cpp b/Source/core/dom/Document.cpp
index 167350780e11e7f52eef73afd1162b52962def6b..5c0f88ee4a3d8a0d365b46fcd01fb9e373a48603 100644
--- a/Source/core/dom/Document.cpp
+++ b/Source/core/dom/Document.cpp
@@ -5348,7 +5348,7 @@ void Document::updateHoverActiveState(const HitTestRequest& request, Element* in
if (oldActiveElement && !request.active()) {
// The oldActiveElement layoutObject is null, dropped on :active by setting display: none,
// for instance. We still need to clear the ActiveChain as the mouse is released.
- for (RefPtr<Node> node = oldActiveElement; node; node = ComposedTreeTraversal::parent(*node)) {
+ for (RefPtrWillBeRawPtr<Node> node = oldActiveElement; node; node = ComposedTreeTraversal::parent(*node)) {
ASSERT(!node->isTextNode());
node->setActive(false);
m_userActionElements.setInActiveChain(node.get(), false);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698