| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CSSOMTypes_h | 5 #ifndef DocumentVR_h |
| 6 #define CSSOMTypes_h | 6 #define DocumentVR_h |
| 7 | 7 |
| 8 #include "core/CSSPropertyNames.h" | |
| 9 #include "wtf/Allocator.h" | 8 #include "wtf/Allocator.h" |
| 10 | 9 |
| 11 namespace blink { | 10 namespace blink { |
| 12 | 11 |
| 13 class CSSStyleValue; | 12 class Document; |
| 14 | 13 |
| 15 class CSSOMTypes { | 14 class DocumentVR { |
| 16 STATIC_ONLY(CSSOMTypes); | 15 STATIC_ONLY(DocumentVR); |
| 17 | |
| 18 public: | 16 public: |
| 19 static bool propertyCanTake(CSSPropertyID, const CSSStyleValue&); | 17 static bool vrEnabled(Document&); |
| 20 }; | 18 }; |
| 21 | 19 |
| 22 } // namespace blink | 20 } // namespace blink |
| 23 | 21 |
| 24 #endif | 22 #endif // DocumentVR_h |
| OLD | NEW |