| Index: components/view_manager/public/cpp/lib/view.cc
|
| diff --git a/components/view_manager/public/cpp/lib/view.cc b/components/view_manager/public/cpp/lib/view.cc
|
| index 5cdb8c966656d5d884d9e91dd2420bfe0b4c41d7..a0cbc9f11c3d1f3a8b194880c0d62805d0918853 100644
|
| --- a/components/view_manager/public/cpp/lib/view.cc
|
| +++ b/components/view_manager/public/cpp/lib/view.cc
|
| @@ -370,11 +370,11 @@ void View::Embed(const String& url) {
|
| static_cast<ViewManagerClientImpl*>(manager_)->Embed(url, id_);
|
| }
|
|
|
| -void View::Embed(const String& url,
|
| +void View::Embed(mojo::URLRequestPtr request,
|
| InterfaceRequest<ServiceProvider> services,
|
| ServiceProviderPtr exposed_services) {
|
| static_cast<ViewManagerClientImpl*>(manager_)
|
| - ->Embed(url, id_, services.Pass(), exposed_services.Pass());
|
| + ->Embed(request.Pass(), id_, services.Pass(), exposed_services.Pass());
|
| }
|
|
|
| void View::Embed(ViewManagerClientPtr client) {
|
|
|