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

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

Issue 209043008: Remove unnecesary usage of RefPtr and PassRefPtr of DatabaseContext. (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: Source/modules/webdatabase/DatabaseBackend.h
diff --git a/Source/modules/webdatabase/DatabaseBackend.h b/Source/modules/webdatabase/DatabaseBackend.h
index 86100ce31cefc7a802eb63edc8eb77502cb40925..b0fcdaf53990aa97fb684bd1438b3b7628ae2344 100644
--- a/Source/modules/webdatabase/DatabaseBackend.h
+++ b/Source/modules/webdatabase/DatabaseBackend.h
@@ -48,7 +48,7 @@ class SQLTransactionCoordinator;
class DatabaseBackend : public DatabaseBackendBase {
public:
- DatabaseBackend(PassRefPtr<DatabaseContext>, const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize);
+ DatabaseBackend(DatabaseContext*, const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize);
virtual void trace(Visitor*) OVERRIDE;
virtual bool openAndVerifyVersion(bool setVersionInNewDatabase, DatabaseError&, String& errorMessage) OVERRIDE FINAL;

Powered by Google App Engine
This is Rietveld 408576698