| Index: third_party/WebKit/Source/core/style/ComputedStyle.h
|
| diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.h b/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| index 37acb410f78a9b255ed89c0ef28e5593e70e7fc7..b178b6d4a9e60a4a351c34fdc9200199171dd7fa 100644
|
| --- a/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| +++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| @@ -26,6 +26,7 @@
|
| #ifndef ComputedStyle_h
|
| #define ComputedStyle_h
|
|
|
| +#include <memory>
|
| #include "core/CSSPropertyNames.h"
|
| #include "core/ComputedStyleBase.h"
|
| #include "core/CoreExport.h"
|
| @@ -75,7 +76,6 @@
|
| #include "wtf/LeakAnnotations.h"
|
| #include "wtf/RefCounted.h"
|
| #include "wtf/Vector.h"
|
| -#include <memory>
|
|
|
| template <typename T, typename U>
|
| inline bool compareEqual(const T& t, const U& u) {
|
| @@ -218,10 +218,10 @@ class CORE_EXPORT ComputedStyle : public ComputedStyleBase,
|
|
|
| unsigned m_hasSimpleUnderline : 1; // True if 'underline solid' is the only
|
| // text decoration on this element.
|
| - unsigned m_cursorStyle : 6; // ECursor
|
| + unsigned m_cursorStyle : 6; // ECursor
|
|
|
| // non CSS2 inherited
|
| - unsigned m_insideLink : 2; // EInsideLink
|
| + unsigned m_insideLink : 2; // EInsideLink
|
| } m_inheritedData;
|
|
|
| // don't inherit
|
|
|