Index: third_party/WebKit/Source/core/fetch/Resource.cpp |
diff --git a/third_party/WebKit/Source/core/fetch/Resource.cpp b/third_party/WebKit/Source/core/fetch/Resource.cpp |
index ffca9956ff1d7ac0de45c9244afc2906c3751982..fec7c016215034d3b5c6488fb59003a060249f87 100644 |
--- a/third_party/WebKit/Source/core/fetch/Resource.cpp |
+++ b/third_party/WebKit/Source/core/fetch/Resource.cpp |
@@ -41,6 +41,7 @@ |
#include "public/platform/Platform.h" |
#include "public/platform/WebProcessMemoryDump.h" |
#include "wtf/CurrentTime.h" |
+#include "wtf/LeakAnnotations.h" |
#include "wtf/MathExtras.h" |
#include "wtf/StdLibExtras.h" |
#include "wtf/Vector.h" |
@@ -997,6 +998,7 @@ ResourcePriority Resource::priorityFromClients() |
Resource::ResourceCallback* Resource::ResourceCallback::callbackHandler() |
{ |
+ WTF_ANNOTATE_SCOPED_MEMORY_LEAK; |
DEFINE_STATIC_LOCAL(OwnPtrWillBePersistent<ResourceCallback>, callbackHandler, (adoptPtrWillBeNoop(new ResourceCallback))); |
return callbackHandler.get(); |
} |