| Index: third_party/WebKit/Source/core/css/CSSValuePool.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/CSSValuePool.cpp b/third_party/WebKit/Source/core/css/CSSValuePool.cpp
|
| index 53dce3fdb520072c2cfb04bca33c8aa7f3e4c722..49522024b19f82dc37fe12655bede7626bbd4b3d 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSValuePool.cpp
|
| +++ b/third_party/WebKit/Source/core/css/CSSValuePool.cpp
|
| @@ -34,8 +34,8 @@
|
|
|
| CSSValuePool& cssValuePool()
|
| {
|
| - DEFINE_STATIC_LOCAL(CSSValuePool, pool, (new CSSValuePool));
|
| - return pool;
|
| + DEFINE_STATIC_LOCAL(Persistent<CSSValuePool>, pool, (new CSSValuePool()));
|
| + return *pool;
|
| }
|
|
|
| CSSValuePool::CSSValuePool()
|
|
|