| Index: third_party/WebKit/Source/core/frame/csp/CSPDirectiveList.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/csp/CSPDirectiveList.cpp b/third_party/WebKit/Source/core/frame/csp/CSPDirectiveList.cpp
|
| index 4d57b23e04a85227d68d26eb9fbf28948f0a23fa..f202d21f93fa784410b74e0e3d971ba9f764278b 100644
|
| --- a/third_party/WebKit/Source/core/frame/csp/CSPDirectiveList.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/csp/CSPDirectiveList.cpp
|
| @@ -1200,9 +1200,9 @@ SourceListDirective* CSPDirectiveList::operativeDirective(
|
| return operativeDirective(m_styleSrc.get());
|
| // Directives that default to child-src, which defaults to default-src.
|
| case ContentSecurityPolicy::DirectiveType::FrameSrc:
|
| - return operativeDirective(m_frameSrc,
|
| + return operativeDirective(m_frameSrc.get(),
|
| operativeDirective(m_childSrc.get()));
|
| - // TODO(mkwst): Reevaluate this
|
| + // TODO(mkwst): Reevaluate this.
|
| case ContentSecurityPolicy::DirectiveType::WorkerSrc:
|
| return operativeDirective(m_workerSrc.get(),
|
| operativeDirective(m_childSrc.get()));
|
|
|