Index: third_party/WebKit/Source/core/frame/csp/CSPDirective.h |
diff --git a/third_party/WebKit/Source/core/frame/csp/CSPDirective.h b/third_party/WebKit/Source/core/frame/csp/CSPDirective.h |
index 8bbecc5f3785a25c3651ffe22c622f11cdede9b7..b45dc9704b8dbef2dd019d0201a5c5a242d94c8d 100644 |
--- a/third_party/WebKit/Source/core/frame/csp/CSPDirective.h |
+++ b/third_party/WebKit/Source/core/frame/csp/CSPDirective.h |
@@ -5,6 +5,7 @@ |
#ifndef CSPDirective_h |
#define CSPDirective_h |
+#include "platform/heap/Handle.h" |
#include "wtf/text/WTFString.h" |
namespace blink { |
@@ -30,7 +31,8 @@ protected: |
private: |
String m_name; |
String m_text; |
- ContentSecurityPolicy* m_policy; |
+ // TODO(Oilpan): consider moving ContentSecurityPolicy auxilliary objects to the heap. |
+ RawPtrWillBeUntracedMember<ContentSecurityPolicy> m_policy; |
}; |
} // namespace blink |