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

Unified Diff: third_party/WebKit/Source/modules/webdatabase/DatabaseClient.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/DatabaseClient.h
diff --git a/third_party/WebKit/Source/modules/webdatabase/DatabaseClient.h b/third_party/WebKit/Source/modules/webdatabase/DatabaseClient.h
index 248dc9dd3f630d7a18e5dab96241949b44c4cf27..5a5d42004b278e03d1c658bf64c71aa79b2de0aa 100644
--- a/third_party/WebKit/Source/modules/webdatabase/DatabaseClient.h
+++ b/third_party/WebKit/Source/modules/webdatabase/DatabaseClient.h
@@ -44,7 +44,7 @@ class ExecutionContext;
class InspectorDatabaseAgent;
class Page;
-class MODULES_EXPORT DatabaseClient : public WillBeHeapSupplement<Page> {
+class MODULES_EXPORT DatabaseClient : public HeapSupplement<Page> {
WTF_MAKE_NONCOPYABLE(DatabaseClient);
public:
DatabaseClient();
@@ -63,10 +63,10 @@ public:
void setInspectorAgent(InspectorDatabaseAgent*);
private:
- RawPtrWillBeMember<InspectorDatabaseAgent> m_inspectorAgent;
+ Member<InspectorDatabaseAgent> m_inspectorAgent;
};
-MODULES_EXPORT void provideDatabaseClientTo(Page&, PassOwnPtrWillBeRawPtr<DatabaseClient>);
+MODULES_EXPORT void provideDatabaseClientTo(Page&, RawPtr<DatabaseClient>);
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698