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

Unified Diff: third_party/WebKit/Source/core/frame/FrameViewTest.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/core/frame/FrameViewTest.cpp
diff --git a/third_party/WebKit/Source/core/frame/FrameViewTest.cpp b/third_party/WebKit/Source/core/frame/FrameViewTest.cpp
index ab9fd994d66c25acab86ec3b37ee4af8e99b206c..aaf5ef46c02aec1a13d70ec13e0ec95a35bcad74 100644
--- a/third_party/WebKit/Source/core/frame/FrameViewTest.cpp
+++ b/third_party/WebKit/Source/core/frame/FrameViewTest.cpp
@@ -49,7 +49,7 @@ public:
class FrameViewTestBase : public testing::Test {
protected:
FrameViewTestBase()
- : m_chromeClient(adoptPtrWillBeNoop(new MockChromeClient))
+ : m_chromeClient((new MockChromeClient))
{ }
void SetUp() override
@@ -65,7 +65,7 @@ protected:
MockChromeClient& chromeClient() { return *m_chromeClient; }
private:
- OwnPtrWillBePersistent<MockChromeClient> m_chromeClient;
+ Persistent<MockChromeClient> m_chromeClient;
OwnPtr<DummyPageHolder> m_pageHolder;
};

Powered by Google App Engine
This is Rietveld 408576698