| Index: third_party/WebKit/Source/core/dom/PseudoElement.h | 
| diff --git a/third_party/WebKit/Source/core/dom/PseudoElement.h b/third_party/WebKit/Source/core/dom/PseudoElement.h | 
| index d0b9c8a9912845ac1a8231127aa77d3a6aeb9a89..c08cc312f688a8e2688437bc9c3d51b3e6d0b9bb 100644 | 
| --- a/third_party/WebKit/Source/core/dom/PseudoElement.h | 
| +++ b/third_party/WebKit/Source/core/dom/PseudoElement.h | 
| @@ -66,7 +66,7 @@ inline bool pseudoElementLayoutObjectIsNeeded(const ComputedStyle* style) | 
| { | 
| if (!style) | 
| return false; | 
| -    if (style->display() == NONE) | 
| +    if (style->display() == EDisplay::None) | 
| return false; | 
| if (style->styleType() == PseudoIdFirstLetter || style->styleType() == PseudoIdBackdrop) | 
| return true; | 
|  |