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

Unified Diff: third_party/WebKit/Source/modules/webdatabase/DatabaseManager.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/webdatabase/DatabaseManager.h
diff --git a/third_party/WebKit/Source/modules/webdatabase/DatabaseManager.h b/third_party/WebKit/Source/modules/webdatabase/DatabaseManager.h
index 4d3d8e1cc314af4e00bb233b2561c5d3c05079de..147113bb78a2c4d0ba3ae4bbdff7e54f724162d7 100644
--- a/third_party/WebKit/Source/modules/webdatabase/DatabaseManager.h
+++ b/third_party/WebKit/Source/modules/webdatabase/DatabaseManager.h
@@ -87,7 +87,7 @@ private:
// m_contextMap can have two or more entries even though we don't support
// Web SQL on workers because single Blink process can have multiple main
// contexts.
- typedef PersistentHeapHashMap<RawPtrWillBeMember<ExecutionContext>, Member<DatabaseContext>> ContextMap;
+ typedef PersistentHeapHashMap<Member<ExecutionContext>, Member<DatabaseContext>> ContextMap;
ContextMap m_contextMap;
#if ENABLE(ASSERT)
int m_databaseContextRegisteredCount;

Powered by Google App Engine
This is Rietveld 408576698