| 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 9595f553de4df53c2236da9f993cb55efe4d7ea8..a8fd30d36a19f153bd97033c63ede7db141d3c03 100644
|
| --- a/third_party/WebKit/Source/core/frame/csp/CSPDirectiveList.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/csp/CSPDirectiveList.cpp
|
| @@ -34,8 +34,9 @@ String getSha256String(const String& content) {
|
| return "sha256-...";
|
| }
|
|
|
| - return "sha256-" + base64Encode(reinterpret_cast<char*>(digest.data()),
|
| - digest.size(), Base64DoNotInsertLFs);
|
| + return "sha256-" +
|
| + base64Encode(reinterpret_cast<char*>(digest.data()), digest.size(),
|
| + Base64DoNotInsertLFs);
|
| }
|
|
|
| template <typename CharType>
|
|
|