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

Unified Diff: third_party/WebKit/Source/core/editing/serializers/TextOffset.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/core/editing/serializers/TextOffset.h
diff --git a/third_party/WebKit/Source/core/editing/serializers/TextOffset.h b/third_party/WebKit/Source/core/editing/serializers/TextOffset.h
index 2f995ab7b7509457fdec62f3840c14ea85ae233a..955422c746029663da81b07d5593ff5cdaacaf01 100644
--- a/third_party/WebKit/Source/core/editing/serializers/TextOffset.h
+++ b/third_party/WebKit/Source/core/editing/serializers/TextOffset.h
@@ -16,7 +16,7 @@ class TextOffset {
STACK_ALLOCATED();
public:
TextOffset();
- TextOffset(PassRefPtrWillBeRawPtr<Text>, int);
+ TextOffset(RawPtr<Text>, int);
TextOffset(const TextOffset&);
Text* text() const { return m_text.get(); }
@@ -26,7 +26,7 @@ public:
bool isNotNull() const;
private:
- RefPtrWillBeMember<Text> m_text;
+ Member<Text> m_text;
int m_offset;
};

Powered by Google App Engine
This is Rietveld 408576698