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

Unified Diff: third_party/WebKit/Source/core/loader/HistoryItem.h

Issue 1853743005: Oilpan: Remove WillBe types (part 13) (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/loader/HistoryItem.h
diff --git a/third_party/WebKit/Source/core/loader/HistoryItem.h b/third_party/WebKit/Source/core/loader/HistoryItem.h
index 20f7491cb051f38674a046fb545a6d824e76fbed..d77efdbf3791089c9e7224a57bf4a14593eb39b5 100644
--- a/third_party/WebKit/Source/core/loader/HistoryItem.h
+++ b/third_party/WebKit/Source/core/loader/HistoryItem.h
@@ -45,9 +45,9 @@ class EncodedFormData;
class KURL;
class ResourceRequest;
-class CORE_EXPORT HistoryItem final : public RefCountedWillBeGarbageCollectedFinalized<HistoryItem> {
+class CORE_EXPORT HistoryItem final : public GarbageCollectedFinalized<HistoryItem> {
public:
- static PassRefPtrWillBeRawPtr<HistoryItem> create()
+ static RawPtr<HistoryItem> create()
{
return adoptRefWillBeNoop(new HistoryItem);
}
@@ -112,7 +112,7 @@ private:
IntPoint m_scrollPoint;
float m_pageScaleFactor;
Vector<String> m_documentStateVector;
- RefPtrWillBeMember<DocumentState> m_documentState;
+ Member<DocumentState> m_documentState;
// If two HistoryItems have the same item sequence number, then they are
// clones of one another. Traversing history from one such HistoryItem to

Powered by Google App Engine
This is Rietveld 408576698