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

Unified Diff: content/browser/indexed_db/indexed_db_backing_store.h

Issue 501183003: Remove implicit conversions from scoped_refptr to T* in content/browser/indexed_db/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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: content/browser/indexed_db/indexed_db_backing_store.h
diff --git a/content/browser/indexed_db/indexed_db_backing_store.h b/content/browser/indexed_db/indexed_db_backing_store.h
index 4b198a50dd707cc0b1e38a98f96b538032ffb8b5..cbf3960aa801b0a34661ecb0cce4ba4cf6660e12 100644
--- a/content/browser/indexed_db/indexed_db_backing_store.h
+++ b/content/browser/indexed_db/indexed_db_backing_store.h
@@ -144,7 +144,7 @@ class CONTENT_EXPORT IndexedDBBackingStore
std::vector<IndexedDBBlobInfo>*,
ScopedVector<storage::BlobDataHandle>* handles);
- LevelDBTransaction* transaction() { return transaction_; }
+ LevelDBTransaction* transaction() { return transaction_.get(); }
leveldb::Status GetBlobInfoForRecord(
int64 database_id,

Powered by Google App Engine
This is Rietveld 408576698