Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(495)

Unified Diff: public/web/WebDOMEvent.h

Issue 216523002: Oilpan: Replace most of RefPtrs for Event objects with oilpan's transition types (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
tkent 2014/04/02 06:22:01 Why don't you use |operator PassRefPtrWillBeRawPtr
haraken 2014/04/02 06:28:00 Will fix as you suggest. In our experimental bran
haraken 2014/04/02 09:02:33 Done.
#endif
template<typename T> T to()

Powered by Google App Engine
This is Rietveld 408576698