| Index: Source/core/inspector/DOMPatchSupport.cpp
|
| diff --git a/Source/core/inspector/DOMPatchSupport.cpp b/Source/core/inspector/DOMPatchSupport.cpp
|
| index 0bbf314832d5b346bad376d571758dff72979570..20b3fe711b4aabed26092e7247ae6e797f13838f 100644
|
| --- a/Source/core/inspector/DOMPatchSupport.cpp
|
| +++ b/Source/core/inspector/DOMPatchSupport.cpp
|
| @@ -400,7 +400,7 @@ bool DOMPatchSupport::innerPatchChildren(ContainerNode* parentNode, const Vector
|
| return true;
|
| }
|
|
|
| -static void addStringToDigestor(blink::WebCryptoDigestor* digestor, const String& string)
|
| +static void addStringToDigestor(WebCryptoDigestor* digestor, const String& string)
|
| {
|
| digestor->consume(reinterpret_cast<const unsigned char*>(string.utf8().data()), string.length());
|
| }
|
| @@ -409,7 +409,7 @@ PassOwnPtr<DOMPatchSupport::Digest> DOMPatchSupport::createDigest(Node* node, Un
|
| {
|
| Digest* digest = new Digest(node);
|
|
|
| - OwnPtr<blink::WebCryptoDigestor> digestor = createDigestor(HashAlgorithmSha1);
|
| + OwnPtr<WebCryptoDigestor> digestor = createDigestor(HashAlgorithmSha1);
|
| DigestValue digestResult;
|
|
|
| Node::NodeType nodeType = node->nodeType();
|
| @@ -429,7 +429,7 @@ PassOwnPtr<DOMPatchSupport::Digest> DOMPatchSupport::createDigest(Node* node, Un
|
|
|
| AttributeCollection attributes = element.attributesWithoutUpdate();
|
| if (!attributes.isEmpty()) {
|
| - OwnPtr<blink::WebCryptoDigestor> attrsDigestor = createDigestor(HashAlgorithmSha1);
|
| + OwnPtr<WebCryptoDigestor> attrsDigestor = createDigestor(HashAlgorithmSha1);
|
| for (auto& attribute : attributes) {
|
| addStringToDigestor(attrsDigestor.get(), attribute.name().toString());
|
| addStringToDigestor(attrsDigestor.get(), attribute.value().string());
|
|
|