| Index: ios/web/public/web_client.mm
|
| diff --git a/ios/web/public/web_client.mm b/ios/web/public/web_client.mm
|
| index 997eecef3fbfa18a540f23ca65bc69969d975f08..ff5592057f17a4f3919c771cd22d26b153333460 100644
|
| --- a/ios/web/public/web_client.mm
|
| +++ b/ios/web/public/web_client.mm
|
| @@ -6,6 +6,8 @@
|
|
|
| #import <Foundation/Foundation.h>
|
|
|
| +#include "ios/web/public/app/web_main_parts.h"
|
| +
|
| #if !defined(__has_feature) || !__has_feature(objc_arc)
|
| #error "This file requires ARC support."
|
| #endif
|
| @@ -28,7 +30,7 @@ WebClient::WebClient() {
|
| WebClient::~WebClient() {
|
| }
|
|
|
| -WebMainParts* WebClient::CreateWebMainParts() {
|
| +std::unique_ptr<WebMainParts> WebClient::CreateWebMainParts() {
|
| return nullptr;
|
| }
|
|
|
|
|