| 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;
 | 
|  };
 | 
|  
 | 
| 
 |