| Index: third_party/WebKit/Source/core/dom/ProcessingInstruction.cpp
 | 
| diff --git a/third_party/WebKit/Source/core/dom/ProcessingInstruction.cpp b/third_party/WebKit/Source/core/dom/ProcessingInstruction.cpp
 | 
| index d540c30237fafccc249aee9cdd48323fe3ec2988..fd3c13f2f073f9edfa4b05cce6fde303b2610d2d 100644
 | 
| --- a/third_party/WebKit/Source/core/dom/ProcessingInstruction.cpp
 | 
| +++ b/third_party/WebKit/Source/core/dom/ProcessingInstruction.cpp
 | 
| @@ -274,9 +274,9 @@ Node::InsertionNotificationRequest ProcessingInstruction::insertedInto(Container
 | 
|      return InsertionDone;
 | 
|  }
 | 
|  
 | 
| -void ProcessingInstruction::removedFrom(ContainerNode* insertionPoint)
 | 
| +void ProcessingInstruction::removedFrom(ContainerNode* insertionPoint, Node* next)
 | 
|  {
 | 
| -    CharacterData::removedFrom(insertionPoint);
 | 
| +    CharacterData::removedFrom(insertionPoint, next);
 | 
|      if (!insertionPoint->inDocument())
 | 
|          return;
 | 
|  
 | 
| 
 |