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

Unified Diff: Source/wtf/RawPtr.h

Issue 148523016: Move most of the [Pass]RefPtr's of CSSPrimitiveValue to our transition types. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Sync to latest change Created 6 years, 10 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
« no previous file with comments | « Source/heap/Heap.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/RawPtr.h
diff --git a/Source/wtf/RawPtr.h b/Source/wtf/RawPtr.h
index c4723671a6094cce84803076230c43a5ebb6d644..8c111eafeaad4086755b00e3211ba56de2f67afa 100644
--- a/Source/wtf/RawPtr.h
+++ b/Source/wtf/RawPtr.h
@@ -55,7 +55,12 @@ public:
T* get() const { return m_ptr; }
void clear() { m_ptr = 0; }
// FIXME: oilpan: Remove release and leakRef once we remove RefPtrWillBeRawPtr.
- RawPtr<T> release() const { return m_ptr; }
+ RawPtr<T> release()
+ {
+ RawPtr<T> tmp = m_ptr;
+ m_ptr = 0;
+ return tmp;
+ }
T* leakRef()
{
T* ptr = m_ptr;
« no previous file with comments | « Source/heap/Heap.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698