| Index: third_party/WebKit/Source/core/page/TouchAdjustment.h
 | 
| diff --git a/third_party/WebKit/Source/core/page/TouchAdjustment.h b/third_party/WebKit/Source/core/page/TouchAdjustment.h
 | 
| index f4668d1ee90c151891822b412bf894b453d12f12..0fa59fc001ad8ea14ed9fe021974c4eed845232c 100644
 | 
| --- a/third_party/WebKit/Source/core/page/TouchAdjustment.h
 | 
| +++ b/third_party/WebKit/Source/core/page/TouchAdjustment.h
 | 
| @@ -30,9 +30,9 @@ namespace blink {
 | 
|  
 | 
|  class Node;
 | 
|  
 | 
| -bool findBestClickableCandidate(Node*& targetNode, IntPoint& targetPoint, const IntPoint& touchHotspot, const IntRect& touchArea, const WillBeHeapVector<RefPtrWillBeMember<Node>>&);
 | 
| -bool findBestContextMenuCandidate(Node*& targetNode, IntPoint& targetPoint, const IntPoint& touchHotspot, const IntRect& touchArea, const WillBeHeapVector<RefPtrWillBeMember<Node>>&);
 | 
| -bool findBestZoomableArea(Node*& targetNode, IntRect& targetArea, const IntPoint& touchHotspot, const IntRect& touchArea, const WillBeHeapVector<RefPtrWillBeMember<Node>>&);
 | 
| +bool findBestClickableCandidate(Node*& targetNode, IntPoint& targetPoint, const IntPoint& touchHotspot, const IntRect& touchArea, const HeapVector<Member<Node>>&);
 | 
| +bool findBestContextMenuCandidate(Node*& targetNode, IntPoint& targetPoint, const IntPoint& touchHotspot, const IntRect& touchArea, const HeapVector<Member<Node>>&);
 | 
| +bool findBestZoomableArea(Node*& targetNode, IntRect& targetArea, const IntPoint& touchHotspot, const IntRect& touchArea, const HeapVector<Member<Node>>&);
 | 
|  // FIXME: Implement the similar functions for other gestures here as well.
 | 
|  
 | 
|  } // namespace blink
 | 
| 
 |