| Index: third_party/WebKit/Source/core/frame/Frame.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/Frame.cpp b/third_party/WebKit/Source/core/frame/Frame.cpp
|
| index ebb92b8ef40e46322993e9a9fe9502a251b8d387..a7bda7e682f5e4fe7a8f2099f1f9b9411701c2d8 100644
|
| --- a/third_party/WebKit/Source/core/frame/Frame.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/Frame.cpp
|
| @@ -154,8 +154,8 @@
|
|
|
| static ChromeClient& emptyChromeClient()
|
| {
|
| - DEFINE_STATIC_LOCAL(EmptyChromeClient, client, (EmptyChromeClient::create()));
|
| - return client;
|
| + DEFINE_STATIC_LOCAL(Persistent<EmptyChromeClient>, client, (EmptyChromeClient::create()));
|
| + return *client;
|
| }
|
|
|
| ChromeClient& Frame::chromeClient() const
|
|
|