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

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, 9 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 14c1c32f29b587bbc247332788fd3ace89669b10..11b1ac3f7e6119395d987c5c1ab417eb5db19adb 100644
--- a/third_party/WebKit/Source/web/FullscreenController.cpp
+++ b/third_party/WebKit/Source/web/FullscreenController.cpp
@@ -45,9 +45,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)
@@ -63,7 +63,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();
« no previous file with comments | « third_party/WebKit/Source/web/FullscreenController.h ('k') | third_party/WebKit/Source/web/GeolocationClientProxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698