Index: Source/core/dom/FullscreenElementStack.cpp |
diff --git a/Source/core/dom/FullscreenElementStack.cpp b/Source/core/dom/FullscreenElementStack.cpp |
index f6346252f64429c1ddae698c339ea491c08411f1..98d846eaac8b96fc4ed80d7b9b2a8efc7f27a9eb 100644 |
--- a/Source/core/dom/FullscreenElementStack.cpp |
+++ b/Source/core/dom/FullscreenElementStack.cpp |
@@ -70,7 +70,7 @@ FullscreenElementStack& FullscreenElementStack::from(Document& document) |
FullscreenElementStack* fullscreen = fromIfExists(document); |
if (!fullscreen) { |
fullscreen = new FullscreenElementStack(document); |
- DocumentSupplement::provideTo(document, supplementName(), adoptPtr(fullscreen)); |
+ DocumentSupplement::provideTo(document, supplementName(), adoptPtrWillBeNoop(fullscreen)); |
} |
return *fullscreen; |