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