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

Unified Diff: Source/web/WebDocument.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 | « Source/core/dom/Document.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebDocument.cpp
diff --git a/Source/web/WebDocument.cpp b/Source/web/WebDocument.cpp
index 2fa209cfc825377e2c0ac5f2862a121fed7ee01b..523704708dfe93db251743ffd601e44d8175fa3b 100644
--- a/Source/web/WebDocument.cpp
+++ b/Source/web/WebDocument.cpp
@@ -273,7 +273,7 @@ void WebDocument::setIsTransitionDocument()
void WebDocument::beginExitTransition(const WebString& cssSelector)
{
- RefPtr<Document> document = unwrap<Document>();
+ RefPtrWillBeRawPtr<Document> document = unwrap<Document>();
document->hideTransitionElements(cssSelector);
document->styleEngine()->enableExitTransitionStylesheets();
}
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698