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

Unified Diff: Source/modules/webdatabase/ChangeVersionWrapper.h

Issue 211933005: Oilpan: Prepare to move SQLTransactionWrapper and CangeVersionWrapper to Oilpan heap. (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
« no previous file with comments | « no previous file | Source/modules/webdatabase/DatabaseBackend.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webdatabase/ChangeVersionWrapper.h
diff --git a/Source/modules/webdatabase/ChangeVersionWrapper.h b/Source/modules/webdatabase/ChangeVersionWrapper.h
index a0b2c300c95405aab8b02b723f25532040dd1959..660d3b608cf69fce42b57a87a95f175e99259e96 100644
--- a/Source/modules/webdatabase/ChangeVersionWrapper.h
+++ b/Source/modules/webdatabase/ChangeVersionWrapper.h
@@ -38,8 +38,9 @@ class SQLErrorData;
class ChangeVersionWrapper FINAL : public SQLTransactionWrapper {
public:
- static PassRefPtr<ChangeVersionWrapper> create(const String& oldVersion, const String& newVersion) { return adoptRef(new ChangeVersionWrapper(oldVersion, newVersion)); }
+ static PassRefPtrWillBeRawPtr<ChangeVersionWrapper> create(const String& oldVersion, const String& newVersion) { return adoptRefWillBeNoop(new ChangeVersionWrapper(oldVersion, newVersion)); }
+ virtual void trace(Visitor*) OVERRIDE { }
virtual bool performPreflight(SQLTransactionBackend*) OVERRIDE;
virtual bool performPostflight(SQLTransactionBackend*) OVERRIDE;
virtual SQLErrorData* sqlError() const OVERRIDE { return m_sqlError.get(); }
« no previous file with comments | « no previous file | Source/modules/webdatabase/DatabaseBackend.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698