| Index: third_party/WebKit/Source/modules/app_banner/AppBannerCallbacks.cpp
|
| diff --git a/third_party/WebKit/Source/modules/app_banner/AppBannerCallbacks.cpp b/third_party/WebKit/Source/modules/app_banner/AppBannerCallbacks.cpp
|
| index 3da3c29a6dc5eda679dcbf57ec0be562efc53c17..f01fcdbd601a40da953ac088a0d4cfc89ed300c5 100644
|
| --- a/third_party/WebKit/Source/modules/app_banner/AppBannerCallbacks.cpp
|
| +++ b/third_party/WebKit/Source/modules/app_banner/AppBannerCallbacks.cpp
|
| @@ -12,9 +12,9 @@ AppBannerCallbacks::AppBannerCallbacks(UserChoiceProperty* userChoice)
|
| {
|
| }
|
|
|
| -void AppBannerCallbacks::onSuccess(WebAppBannerPromptResult* result)
|
| +void AppBannerCallbacks::onSuccess(const WebAppBannerPromptResult& result)
|
| {
|
| - m_userChoice->resolve(AppBannerPromptResult::take(adoptPtr(result)));
|
| + m_userChoice->resolve(AppBannerPromptResult::create(result.platform, result.outcome));
|
| }
|
|
|
| } // namespace blink
|
|
|