| Index: third_party/WebKit/Source/core/inspector/DOMPatchSupport.cpp
|
| diff --git a/third_party/WebKit/Source/core/inspector/DOMPatchSupport.cpp b/third_party/WebKit/Source/core/inspector/DOMPatchSupport.cpp
|
| index 91d2763a71507afd930822688b8ba52f5ee94c02..f75f2b9053322e76ecc31596db876bcbb2bd08a6 100644
|
| --- a/third_party/WebKit/Source/core/inspector/DOMPatchSupport.cpp
|
| +++ b/third_party/WebKit/Source/core/inspector/DOMPatchSupport.cpp
|
| @@ -422,7 +422,7 @@ PassOwnPtrWillBeRawPtr<DOMPatchSupport::Digest> DOMPatchSupport::createDigest(No
|
| OwnPtr<WebCryptoDigestor> attrsDigestor = createDigestor(HashAlgorithmSha1);
|
| for (auto& attribute : attributes) {
|
| addStringToDigestor(attrsDigestor.get(), attribute.name().toString());
|
| - addStringToDigestor(attrsDigestor.get(), attribute.value().string());
|
| + addStringToDigestor(attrsDigestor.get(), attribute.value().getString());
|
| }
|
| finishDigestor(attrsDigestor.get(), digestResult);
|
| digest->m_attrsSHA1 = base64Encode(reinterpret_cast<const char*>(digestResult.data()), 10);
|
|
|