| Index: third_party/WebKit/Source/core/dom/shadow/ShadowRoot.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/shadow/ShadowRoot.cpp b/third_party/WebKit/Source/core/dom/shadow/ShadowRoot.cpp
|
| index 0d243d7f703033f1bf9d2c56b0fc138a7e77a620..0ad8b55ca3167f133b931d9ea8f474adee5778a8 100644
|
| --- a/third_party/WebKit/Source/core/dom/shadow/ShadowRoot.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/shadow/ShadowRoot.cpp
|
| @@ -177,7 +177,7 @@
|
| return InsertionDone;
|
| }
|
|
|
| -void ShadowRoot::removedFrom(ContainerNode* insertionPoint, Node* next)
|
| +void ShadowRoot::removedFrom(ContainerNode* insertionPoint)
|
| {
|
| if (insertionPoint->inDocument()) {
|
| document().styleEngine().shadowRootRemovedFromDocument(this);
|
| @@ -191,7 +191,7 @@
|
| }
|
| }
|
|
|
| - DocumentFragment::removedFrom(insertionPoint, next);
|
| + DocumentFragment::removedFrom(insertionPoint);
|
| }
|
|
|
| void ShadowRoot::childrenChanged(const ChildrenChange& change)
|
|
|