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

Unified Diff: third_party/WebKit/Source/web/FullscreenController.cpp

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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/web/FullscreenController.cpp
diff --git a/third_party/WebKit/Source/web/FullscreenController.cpp b/third_party/WebKit/Source/web/FullscreenController.cpp
index 0f0e556c6fe9e893d32bda887e08dc3c89aac45a..5e72c06b10bf14c1b5025f0ce30d66f4e1c546c9 100644
--- a/third_party/WebKit/Source/web/FullscreenController.cpp
+++ b/third_party/WebKit/Source/web/FullscreenController.cpp
@@ -46,9 +46,9 @@
namespace blink {
-PassOwnPtrWillBeRawPtr<FullscreenController> FullscreenController::create(WebViewImpl* webViewImpl)
+RawPtr<FullscreenController> FullscreenController::create(WebViewImpl* webViewImpl)
{
- return adoptPtrWillBeNoop(new FullscreenController(webViewImpl));
+ return (new FullscreenController(webViewImpl));
}
FullscreenController::FullscreenController(WebViewImpl* webViewImpl)
@@ -64,7 +64,7 @@ void FullscreenController::didEnterFullScreen()
if (!m_provisionalFullScreenElement)
return;
- RefPtrWillBeRawPtr<Element> element = m_provisionalFullScreenElement.release();
+ RawPtr<Element> element = m_provisionalFullScreenElement.release();
Document& document = element->document();
m_fullScreenFrame = document.frame();

Powered by Google App Engine
This is Rietveld 408576698