| Index: third_party/WebKit/Source/core/dom/ContextFeatures.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/ContextFeatures.cpp b/third_party/WebKit/Source/core/dom/ContextFeatures.cpp
|
| index 69ef1352ab0c30a50938613777c1ab89e2ceb958..42b1bc2a3fe5be56d8a6b709dafe269525429fa0 100644
|
| --- a/third_party/WebKit/Source/core/dom/ContextFeatures.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/ContextFeatures.cpp
|
| @@ -29,7 +29,6 @@
|
| #include "core/dom/Document.h"
|
| #include "core/page/Page.h"
|
| #include "platform/RuntimeEnabledFeatures.h"
|
| -#include "wtf/StdLibExtras.h"
|
|
|
| namespace blink {
|
|
|
| @@ -43,9 +42,9 @@
|
| return "ContextFeatures";
|
| }
|
|
|
| -ContextFeatures& ContextFeatures::defaultSwitch()
|
| +ContextFeatures* ContextFeatures::defaultSwitch()
|
| {
|
| - DEFINE_STATIC_LOCAL(ContextFeatures, instance, (ContextFeatures::create(ContextFeaturesClient::empty())));
|
| + DEFINE_STATIC_REF_WILL_BE_PERSISTENT(ContextFeatures, instance, (ContextFeatures::create(ContextFeaturesClient::empty())));
|
| return instance;
|
| }
|
|
|
|
|