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

Unified Diff: Source/modules/webdatabase/AbstractDatabaseServer.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/AbstractDatabaseServer.h
diff --git a/Source/modules/webdatabase/AbstractDatabaseServer.h b/Source/modules/webdatabase/AbstractDatabaseServer.h
index 2d704ad1b897cfba1dedd6a0a0ae7226fdc7d620..691700f07870a5be8b76e55901f751cce49e2b85 100644
--- a/Source/modules/webdatabase/AbstractDatabaseServer.h
+++ b/Source/modules/webdatabase/AbstractDatabaseServer.h
@@ -42,7 +42,7 @@ class SecurityOrigin;
class AbstractDatabaseServer {
public:
virtual String fullPathForDatabase(SecurityOrigin*, const String& name, bool createIfDoesNotExist = true) = 0;
- virtual PassRefPtrWillBeRawPtr<DatabaseBackendBase> openDatabase(RefPtr<DatabaseContext>&, DatabaseType,
+ virtual PassRefPtrWillBeRawPtr<DatabaseBackendBase> openDatabase(DatabaseContext*, DatabaseType,
const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize,
bool setVersionInNewDatabase, DatabaseError&, String& errorMessage) = 0;
« no previous file with comments | « no previous file | Source/modules/webdatabase/Database.h » ('j') | Source/modules/webdatabase/DatabaseManager.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698