| Index: Source/modules/navigatorcontentutils/NavigatorContentUtils.cpp
|
| diff --git a/Source/modules/navigatorcontentutils/NavigatorContentUtils.cpp b/Source/modules/navigatorcontentutils/NavigatorContentUtils.cpp
|
| index 03ff686572f9bc1b8724616c2564ab4694a3ba38..b0384923791a4bd42c6956d96f9ef662d7b9a0c8 100644
|
| --- a/Source/modules/navigatorcontentutils/NavigatorContentUtils.cpp
|
| +++ b/Source/modules/navigatorcontentutils/NavigatorContentUtils.cpp
|
| @@ -121,16 +121,16 @@ static bool verifyProtocolHandlerScheme(const String& scheme, const String& meth
|
|
|
| NavigatorContentUtils* NavigatorContentUtils::from(Page& page)
|
| {
|
| - return static_cast<NavigatorContentUtils*>(Supplement<Page>::from(page, supplementName()));
|
| + return static_cast<NavigatorContentUtils*>(WillBeHeapSupplement<Page>::from(page, supplementName()));
|
| }
|
|
|
| NavigatorContentUtils::~NavigatorContentUtils()
|
| {
|
| }
|
|
|
| -PassOwnPtr<NavigatorContentUtils> NavigatorContentUtils::create(PassOwnPtr<NavigatorContentUtilsClient> client)
|
| +PassOwnPtrWillBeRawPtr<NavigatorContentUtils> NavigatorContentUtils::create(PassOwnPtr<NavigatorContentUtilsClient> client)
|
| {
|
| - return adoptPtr(new NavigatorContentUtils(client));
|
| + return adoptPtrWillBeNoop(new NavigatorContentUtils(client));
|
| }
|
|
|
| void NavigatorContentUtils::registerProtocolHandler(Navigator& navigator, const String& scheme, const String& url, const String& title, ExceptionState& exceptionState)
|
|
|