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

Unified Diff: third_party/WebKit/Source/modules/indexeddb/IDBObjectStore.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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: third_party/WebKit/Source/modules/indexeddb/IDBObjectStore.h
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBObjectStore.h b/third_party/WebKit/Source/modules/indexeddb/IDBObjectStore.h
index abb60f2e6d89e835effe06ecc6c4f10b54f5aa8d..3e114f1aaf24023bcf6eb8c2982cfdc7aa81f97b 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBObjectStore.h
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBObjectStore.h
@@ -64,7 +64,7 @@ public:
int64_t id() const { return m_metadata.id; }
const String& name() const { return m_metadata.name; }
ScriptValue keyPath(ScriptState*) const;
- PassRefPtrWillBeRawPtr<DOMStringList> indexNames() const;
+ RawPtr<DOMStringList> indexNames() const;
IDBTransaction* transaction() const { return m_transaction.get(); }
bool autoIncrement() const { return m_metadata.autoIncrement; }

Powered by Google App Engine
This is Rietveld 408576698