| Index: content/browser/devtools/protocol/page_handler.cc
|
| diff --git a/content/browser/devtools/protocol/page_handler.cc b/content/browser/devtools/protocol/page_handler.cc
|
| index e717572cbf14b1c9deca3ae15d49065ff39f54e8..5f71ef336086608b859d26f64a89433bee1e3bdf 100644
|
| --- a/content/browser/devtools/protocol/page_handler.cc
|
| +++ b/content/browser/devtools/protocol/page_handler.cc
|
| @@ -357,11 +357,11 @@ Response PageHandler::SetColorPickerEnabled(bool enabled) {
|
| return Response::OK();
|
| }
|
|
|
| -Response PageHandler::RequestAppBanner(bool* result) {
|
| +Response PageHandler::RequestAppBanner() {
|
| WebContentsImpl* web_contents = GetWebContents();
|
| if (!web_contents)
|
| return Response::InternalError("Could not connect to view");
|
| - *result = web_contents->GetDelegate()->RequestAppBanner(web_contents);
|
| + web_contents->GetDelegate()->RequestAppBannerFromDevTools(web_contents);
|
| return Response::OK();
|
| }
|
|
|
|
|