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

Unified Diff: third_party/WebKit/Source/modules/navigatorcontentutils/NavigatorContentUtilsClient.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/navigatorcontentutils/NavigatorContentUtilsClient.h
diff --git a/third_party/WebKit/Source/modules/navigatorcontentutils/NavigatorContentUtilsClient.h b/third_party/WebKit/Source/modules/navigatorcontentutils/NavigatorContentUtilsClient.h
index cd272dd7294981060ed2d89146bcadaeb59ad811..d0ce0cde692272e3636d4a3ac2ee1433dfc228e6 100644
--- a/third_party/WebKit/Source/modules/navigatorcontentutils/NavigatorContentUtilsClient.h
+++ b/third_party/WebKit/Source/modules/navigatorcontentutils/NavigatorContentUtilsClient.h
@@ -36,8 +36,7 @@ namespace blink {
class LocalFrame;
-class NavigatorContentUtilsClient : public NoBaseWillBeGarbageCollectedFinalized<NavigatorContentUtilsClient> {
- USING_FAST_MALLOC_WILL_BE_REMOVED(NavigatorContentUtilsClient);
+class NavigatorContentUtilsClient : public GarbageCollectedFinalized<NavigatorContentUtilsClient> {
public:
virtual ~NavigatorContentUtilsClient() { }
virtual void registerProtocolHandler(const String& scheme, const KURL&, const String& title) = 0;
@@ -54,7 +53,7 @@ public:
DEFINE_INLINE_VIRTUAL_TRACE() { }
};
-MODULES_EXPORT void provideNavigatorContentUtilsTo(LocalFrame&, PassOwnPtrWillBeRawPtr<NavigatorContentUtilsClient>);
+MODULES_EXPORT void provideNavigatorContentUtilsTo(LocalFrame&, RawPtr<NavigatorContentUtilsClient>);
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698