| Index: third_party/WebKit/Source/core/events/PointerEventManager.h
|
| diff --git a/third_party/WebKit/Source/core/events/PointerEventManager.h b/third_party/WebKit/Source/core/events/PointerEventManager.h
|
| index ea851f1b29d581ad7efb15ad4820d0df00c51af3..4931f07a34dcb9d65218fa83fd1f81abd7e12bde 100644
|
| --- a/third_party/WebKit/Source/core/events/PointerEventManager.h
|
| +++ b/third_party/WebKit/Source/core/events/PointerEventManager.h
|
| @@ -27,16 +27,16 @@ class CORE_EXPORT PointerEventManager {
|
| DISALLOW_NEW();
|
| public:
|
|
|
| - PassRefPtrWillBeRawPtr<PointerEvent> create(const AtomicString& type,
|
| - const PlatformMouseEvent&, PassRefPtrWillBeRawPtr<Node> relatedTarget,
|
| - PassRefPtrWillBeRawPtr<AbstractView>);
|
| + RawPtr<PointerEvent> create(const AtomicString& type,
|
| + const PlatformMouseEvent&, RawPtr<Node> relatedTarget,
|
| + RawPtr<AbstractView>);
|
|
|
| - PassRefPtrWillBeRawPtr<PointerEvent> create(const AtomicString& type,
|
| + RawPtr<PointerEvent> create(const AtomicString& type,
|
| const PlatformTouchPoint&, PlatformEvent::Modifiers,
|
| const double width, const double height,
|
| const double clientX, const double clientY);
|
|
|
| - PassRefPtrWillBeRawPtr<PointerEvent> createPointerCancel(const PlatformTouchPoint&);
|
| + RawPtr<PointerEvent> createPointerCancel(const PlatformTouchPoint&);
|
|
|
| PointerEventManager();
|
| ~PointerEventManager();
|
| @@ -48,10 +48,10 @@ public:
|
| * free even though there might have been other PointerEvents that were
|
| * generated with the same id before.
|
| */
|
| - void remove(const PassRefPtrWillBeRawPtr<PointerEvent>);
|
| + void remove(const RawPtr<PointerEvent>);
|
|
|
| // Returns the node capturing this pointer id, and null if no node is capturing it.
|
| - EventTarget* getCapturingNode(PassRefPtrWillBeRawPtr<PointerEvent>);
|
| + EventTarget* getCapturingNode(RawPtr<PointerEvent>);
|
|
|
| private:
|
| typedef long MappedId;
|
|
|