| Index: third_party/WebKit/Source/modules/navigatorcontentutils/NavigatorContentUtils.cpp
|
| diff --git a/third_party/WebKit/Source/modules/navigatorcontentutils/NavigatorContentUtils.cpp b/third_party/WebKit/Source/modules/navigatorcontentutils/NavigatorContentUtils.cpp
|
| index b9be8ebe71d1b81f0c0ed5b7d6d1132e2a000d69..fc1059e9ce0bd9e0b2ded5e0960612477e866db5 100644
|
| --- a/third_party/WebKit/Source/modules/navigatorcontentutils/NavigatorContentUtils.cpp
|
| +++ b/third_party/WebKit/Source/modules/navigatorcontentutils/NavigatorContentUtils.cpp
|
| @@ -146,7 +146,7 @@ NavigatorContentUtils::~NavigatorContentUtils()
|
| {
|
| }
|
|
|
| -PassOwnPtrWillBeRawPtr<NavigatorContentUtils> NavigatorContentUtils::create(PassOwnPtr<NavigatorContentUtilsClient> client)
|
| +PassOwnPtrWillBeRawPtr<NavigatorContentUtils> NavigatorContentUtils::create(PassOwnPtrWillBeRawPtr<NavigatorContentUtilsClient> client)
|
| {
|
| return adoptPtrWillBeNoop(new NavigatorContentUtils(client));
|
| }
|
| @@ -230,7 +230,7 @@ const char* NavigatorContentUtils::supplementName()
|
| return "NavigatorContentUtils";
|
| }
|
|
|
| -void provideNavigatorContentUtilsTo(LocalFrame& frame, PassOwnPtr<NavigatorContentUtilsClient> client)
|
| +void provideNavigatorContentUtilsTo(LocalFrame& frame, PassOwnPtrWillBeRawPtr<NavigatorContentUtilsClient> client)
|
| {
|
| NavigatorContentUtils::provideTo(frame, NavigatorContentUtils::supplementName(), NavigatorContentUtils::create(client));
|
| }
|
|
|