| Index: mandoline/ui/desktop_ui/browser_manager.cc
|
| diff --git a/mandoline/ui/desktop_ui/browser_manager.cc b/mandoline/ui/desktop_ui/browser_manager.cc
|
| index b3a51234be84668883643e825ead873efe4723cd..b43b18e28a5237e760c350d2bfdfe56f27a404a1 100644
|
| --- a/mandoline/ui/desktop_ui/browser_manager.cc
|
| +++ b/mandoline/ui/desktop_ui/browser_manager.cc
|
| @@ -70,13 +70,12 @@ void BrowserManager::Initialize(mojo::Shell* shell, const std::string& url,
|
| CreateBrowser(GURL(kGoogleURL));
|
| }
|
|
|
| -bool BrowserManager::AcceptConnection(
|
| - mojo::ApplicationConnection* connection) {
|
| +bool BrowserManager::AcceptConnection(mojo::Connection* connection) {
|
| connection->AddService<LaunchHandler>(this);
|
| return true;
|
| }
|
|
|
| -void BrowserManager::Create(mojo::ApplicationConnection* connection,
|
| +void BrowserManager::Create(mojo::Connection* connection,
|
| mojo::InterfaceRequest<LaunchHandler> request) {
|
| launch_handler_bindings_.AddBinding(this, std::move(request));
|
| }
|
|
|