Index: third_party/WebKit/Source/core/fetch/FetchContext.cpp |
diff --git a/third_party/WebKit/Source/core/fetch/FetchContext.cpp b/third_party/WebKit/Source/core/fetch/FetchContext.cpp |
index 61b816332253a21f23492945218122f2d19f8092..c05c409417a57fca414983fd1b613d8ed0cbe8b4 100644 |
--- a/third_party/WebKit/Source/core/fetch/FetchContext.cpp |
+++ b/third_party/WebKit/Source/core/fetch/FetchContext.cpp |
@@ -35,8 +35,8 @@ namespace blink { |
FetchContext& FetchContext::nullInstance() |
{ |
- DEFINE_STATIC_LOCAL(Persistent<FetchContext>, instance, (new FetchContext)); |
- return *instance; |
+ DEFINE_STATIC_LOCAL(FetchContext, instance, (new FetchContext)); |
+ return instance; |
} |
void FetchContext::dispatchDidChangeResourcePriority(unsigned long, ResourceLoadPriority, int) |