| 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 e8a1cfb8974d3bb9d84afdde1afc765d642fb156..3ec8d343e0590ec3f33381db42c629cd3a99a876 100644
|
| --- a/third_party/WebKit/Source/core/frame/csp/CSPDirective.h
|
| +++ b/third_party/WebKit/Source/core/frame/csp/CSPDirective.h
|
| @@ -12,8 +12,7 @@ namespace blink {
|
|
|
| class ContentSecurityPolicy;
|
|
|
| -class CSPDirective : public NoBaseWillBeGarbageCollectedFinalized<CSPDirective> {
|
| - USING_FAST_MALLOC_WILL_BE_REMOVED(CSPDirective);
|
| +class CSPDirective : public GarbageCollectedFinalized<CSPDirective> {
|
| WTF_MAKE_NONCOPYABLE(CSPDirective);
|
| public:
|
| CSPDirective(const String& name, const String& value, ContentSecurityPolicy* policy)
|
| @@ -33,7 +32,7 @@ protected:
|
| private:
|
| String m_name;
|
| String m_text;
|
| - RawPtrWillBeMember<ContentSecurityPolicy> m_policy;
|
| + Member<ContentSecurityPolicy> m_policy;
|
| };
|
|
|
| } // namespace blink
|
|
|