| Index: third_party/WebKit/Source/core/frame/csp/CSPSourceList.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/csp/CSPSourceList.cpp b/third_party/WebKit/Source/core/frame/csp/CSPSourceList.cpp
|
| index 1fafc3d77ffb3991da83aa125fd4dca99784d554..42d4c08d83fb271e89af8a36caadce373c4cd779 100644
|
| --- a/third_party/WebKit/Source/core/frame/csp/CSPSourceList.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/csp/CSPSourceList.cpp
|
| @@ -130,7 +130,7 @@ void CSPSourceList::parse(const UChar* begin, const UChar* end)
|
| continue;
|
| if (m_policy->isDirectiveName(host))
|
| m_policy->reportDirectiveAsSourceExpression(m_directiveName, host);
|
| - m_list.append(adoptPtrWillBeNoop(new CSPSource(m_policy, scheme, host, port, path, hostWildcard, portWildcard)));
|
| + m_list.append(new CSPSource(m_policy, scheme, host, port, path, hostWildcard, portWildcard));
|
| } else {
|
| m_policy->reportInvalidSourceExpression(m_directiveName, String(beginSource, position - beginSource));
|
| }
|
|
|