Chromium Code Reviews| Index: public/web/WebDOMEvent.h |
| diff --git a/public/web/WebDOMEvent.h b/public/web/WebDOMEvent.h |
| index 152a1027c47636aa985e674b65bc0cec7ddded67..b68f84404d79b77f9445605b4585942fc0d99b72 100644 |
| --- a/public/web/WebDOMEvent.h |
| +++ b/public/web/WebDOMEvent.h |
| @@ -92,8 +92,8 @@ public: |
| BLINK_EXPORT bool isXMLHttpRequestProgressEvent() const; |
| #if BLINK_IMPLEMENTATION |
| - WebDOMEvent(const WTF::PassRefPtr<WebCore::Event>&); |
| - operator WTF::PassRefPtr<WebCore::Event>() const; |
| + WebDOMEvent(const PassRefPtrWillBeRawPtr<WebCore::Event>&); |
| + PassRefPtrWillBeRawPtr<WebCore::Event> getValue() const; |
|
sof
2014/03/28 12:32:09
Unused?
haraken
2014/03/28 14:02:14
It's used in Source/web/ in this CL.
sof
2014/03/28 14:41:02
Oh, so it is. Sorry about the noise.
|
| #endif |
| template<typename T> T to() |