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

Unified Diff: third_party/WebKit/Source/core/html/HTMLVideoElementTest.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/core/html/HTMLVideoElementTest.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLVideoElementTest.cpp b/third_party/WebKit/Source/core/html/HTMLVideoElementTest.cpp
index 70a44985b739d4875cddc61a020c5194ba5c7b67..deaabb859dd01f93374b742d958dabba827387ee 100644
--- a/third_party/WebKit/Source/core/html/HTMLVideoElementTest.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLVideoElementTest.cpp
@@ -58,7 +58,7 @@ public:
class StubFrameLoaderClient : public EmptyFrameLoaderClient {
public:
- static PassOwnPtrWillBeRawPtr<StubFrameLoaderClient> create()
+ static RawPtr<StubFrameLoaderClient> create()
{
return adoptPtrWillBeNoop(new StubFrameLoaderClient);
}
@@ -93,7 +93,7 @@ protected:
}
OwnPtr<DummyPageHolder> m_dummyPageHolder;
- RefPtrWillBePersistent<HTMLVideoElement> m_video;
+ Persistent<HTMLVideoElement> m_video;
};
TEST_F(HTMLVideoElementTest, setBufferingStrategy_NonUserPause)
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLVideoElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLViewSourceDocument.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698