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

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

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.h
diff --git a/third_party/WebKit/Source/web/FullscreenController.h b/third_party/WebKit/Source/web/FullscreenController.h
index 0a29a8576b1d45c0cfbed5290b2569e15a594526..0b2565a6e480158ae2b9d4abcefa439f786231a5 100644
--- a/third_party/WebKit/Source/web/FullscreenController.h
+++ b/third_party/WebKit/Source/web/FullscreenController.h
@@ -44,9 +44,9 @@ class Element;
class LocalFrame;
class WebViewImpl;
-class FullscreenController final : public NoBaseWillBeGarbageCollected<FullscreenController> {
+class FullscreenController final : public GarbageCollected<FullscreenController> {
public:
- static PassOwnPtrWillBeRawPtr<FullscreenController> create(WebViewImpl*);
+ static RawPtr<FullscreenController> create(WebViewImpl*);
void didEnterFullScreen();
void didExitFullScreen();
@@ -74,10 +74,10 @@ private:
FloatPoint m_exitFullscreenVisualViewportOffset;
// If set, the WebView is transitioning to fullscreen for this element.
- RefPtrWillBeMember<Element> m_provisionalFullScreenElement;
+ Member<Element> m_provisionalFullScreenElement;
// If set, the WebView is in fullscreen mode for an element in this frame.
- RefPtrWillBeMember<LocalFrame> m_fullScreenFrame;
+ Member<LocalFrame> m_fullScreenFrame;
bool m_isCancelingFullScreen;
};
« no previous file with comments | « third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp ('k') | third_party/WebKit/Source/web/FullscreenController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698