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

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

Issue 435103002: Oilpan: fix build after r179341. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix WebDocument also Created 6 years, 5 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 | Source/web/WebDocument.cpp » ('j') | 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 bf94ee99f1273387e5ff43cc75777301dea38f3c..d721e4f70ef5cc5e9ed19d164121c13196463f12 100644
--- a/Source/core/dom/Document.cpp
+++ b/Source/core/dom/Document.cpp
@@ -5726,7 +5726,7 @@ void Document::getTransitionElementData(Vector<TransitionElementData>& elementDa
void Document::hideTransitionElements(const AtomicString& cssSelector)
{
TrackExceptionState exceptionState;
- RefPtr<StaticNodeList> nodeList = querySelectorAll(cssSelector, exceptionState);
+ RefPtrWillBeRawPtr<StaticNodeList> nodeList = querySelectorAll(cssSelector, exceptionState);
if (nodeList && !exceptionState.hadException()) {
unsigned nodeListLength = nodeList->length();
« no previous file with comments | « no previous file | Source/web/WebDocument.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698