| Index: third_party/WebKit/Source/wtf/RefPtr.h
|
| diff --git a/third_party/WebKit/Source/wtf/RefPtr.h b/third_party/WebKit/Source/wtf/RefPtr.h
|
| index eab641a66509aeca93b469c0f35c46e30c7ac44b..0097b914fe56229596f906da298c79dc80788251 100644
|
| --- a/third_party/WebKit/Source/wtf/RefPtr.h
|
| +++ b/third_party/WebKit/Source/wtf/RefPtr.h
|
| @@ -70,10 +70,7 @@ public:
|
| ALWAYS_INLINE T* operator->() const { return m_ptr; }
|
|
|
| bool operator!() const { return !m_ptr; }
|
| -
|
| - // TODO(jbroman): Simplifying this in the obvious way causes a massive
|
| - // regression in a perf test on ARM. http://crbug.com/607208
|
| - explicit operator bool() const { return m_ptr ? &RefPtr::m_ptr : 0; }
|
| + explicit operator bool() const { return m_ptr != nullptr; }
|
|
|
| RefPtr& operator=(RefPtr o) { swap(o); return *this; }
|
| RefPtr& operator=(std::nullptr_t) { clear(); return *this; }
|
|
|