| Index: third_party/WebKit/Source/core/layout/TextAutosizer.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/TextAutosizer.cpp b/third_party/WebKit/Source/core/layout/TextAutosizer.cpp
|
| index bdd56a3b1b33ce93b000bf442f477a7cbaf038e8..a8cbf69e4df9397ecab18ac0fd403f6baaa50569 100644
|
| --- a/third_party/WebKit/Source/core/layout/TextAutosizer.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/TextAutosizer.cpp
|
| @@ -54,7 +54,7 @@ namespace blink {
|
| #ifdef AUTOSIZING_DOM_DEBUG_INFO
|
| class WriteDebugInfoTask : public ExecutionContextTask {
|
| public:
|
| - WriteDebugInfoTask(PassRefPtrWillBeRawPtr<Element> element, AtomicString value)
|
| + WriteDebugInfoTask(RawPtr<Element> element, AtomicString value)
|
| : m_element(element)
|
| , m_value(value)
|
| {
|
| @@ -66,7 +66,7 @@ public:
|
| }
|
|
|
| private:
|
| - RefPtrWillBePersistent<Element> m_element;
|
| + Persistent<Element> m_element;
|
| AtomicString m_value;
|
| };
|
|
|
|
|