| Index: third_party/WebKit/Source/core/layout/api/LineLayoutItem.h
|
| diff --git a/third_party/WebKit/Source/core/layout/api/LineLayoutItem.h b/third_party/WebKit/Source/core/layout/api/LineLayoutItem.h
|
| index 46c7fe7eef1af41435d9120f3e8840af07097fb9..70fed8de09b15bb2ec6f67495f5337fed8ef6510 100644
|
| --- a/third_party/WebKit/Source/core/layout/api/LineLayoutItem.h
|
| +++ b/third_party/WebKit/Source/core/layout/api/LineLayoutItem.h
|
| @@ -47,8 +47,7 @@ public:
|
|
|
| LineLayoutItem() : m_layoutObject(0) { }
|
|
|
| - typedef LayoutObject* LineLayoutItem::*UnspecifiedBoolType;
|
| - operator UnspecifiedBoolType() const { return m_layoutObject ? &LineLayoutItem::m_layoutObject : nullptr; }
|
| + explicit operator bool() const { return m_layoutObject; }
|
|
|
| bool isEqual(const LayoutObject* layoutObject) const
|
| {
|
|
|