| Index: third_party/WebKit/Source/core/dom/shadow/ShadowRoot.h | 
| diff --git a/third_party/WebKit/Source/core/dom/shadow/ShadowRoot.h b/third_party/WebKit/Source/core/dom/shadow/ShadowRoot.h | 
| index a3f45777c0eb04da3f2b50902d37d4e0cd9729ef..5748962990ed6e9ff92ea5cab4f35080b8601463 100644 | 
| --- a/third_party/WebKit/Source/core/dom/shadow/ShadowRoot.h | 
| +++ b/third_party/WebKit/Source/core/dom/shadow/ShadowRoot.h | 
| @@ -46,7 +46,7 @@ class StyleSheetList; | 
|  | 
| enum class ShadowRootType { | 
| UserAgent, | 
| -    OpenByDefault, | 
| +    V0, | 
| Open, | 
| Closed | 
| }; | 
| @@ -78,7 +78,7 @@ public: | 
| ShadowRoot* youngerShadowRoot() const { return prev(); } | 
|  | 
| ShadowRoot* olderShadowRootForBindings() const; | 
| -    bool isOpen() const { return type() == ShadowRootType::OpenByDefault || type() == ShadowRootType::Open; } | 
| +    bool isOpen() const { return type() == ShadowRootType::V0 || type() == ShadowRootType::Open; } | 
|  | 
| bool isYoungest() const { return !youngerShadowRoot(); } | 
| bool isOldest() const { return !olderShadowRoot(); } | 
|  |