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

Unified Diff: third_party/WebKit/Source/modules/webdatabase/InspectorDatabaseAgent.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, 10 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/InspectorDatabaseAgent.h
diff --git a/third_party/WebKit/Source/modules/webdatabase/InspectorDatabaseAgent.h b/third_party/WebKit/Source/modules/webdatabase/InspectorDatabaseAgent.h
index 981aba52d0d65f2745a07cc910d4b24e9fd826e3..c2eba453a0dcdae146af0be209cef7ff41704b29 100644
--- a/third_party/WebKit/Source/modules/webdatabase/InspectorDatabaseAgent.h
+++ b/third_party/WebKit/Source/modules/webdatabase/InspectorDatabaseAgent.h
@@ -50,9 +50,9 @@ typedef String ErrorString;
class MODULES_EXPORT InspectorDatabaseAgent final : public InspectorBaseAgent<InspectorDatabaseAgent, InspectorFrontend::Database>, public InspectorBackendDispatcher::DatabaseCommandHandler {
WTF_MAKE_NONCOPYABLE(InspectorDatabaseAgent);
public:
- static PassOwnPtrWillBeRawPtr<InspectorDatabaseAgent> create(Page* page)
+ static RawPtr<InspectorDatabaseAgent> create(Page* page)
{
- return adoptPtrWillBeNoop(new InspectorDatabaseAgent(page));
+ return (new InspectorDatabaseAgent(page));
}
~InspectorDatabaseAgent() override;
DECLARE_VIRTUAL_TRACE();
@@ -73,8 +73,8 @@ private:
Database* databaseForId(const String& databaseId);
InspectorDatabaseResource* findByFileName(const String& fileName);
- RawPtrWillBeMember<Page> m_page;
- typedef PersistentHeapHashMapWillBeHeapHashMap<String, Member<InspectorDatabaseResource>> DatabaseResourcesHeapMap;
+ Member<Page> m_page;
+ typedef HeapHashMap<String, Member<InspectorDatabaseResource>> DatabaseResourcesHeapMap;
DatabaseResourcesHeapMap m_resources;
bool m_enabled;
};

Powered by Google App Engine
This is Rietveld 408576698