| Index: mandoline/ui/omnibox/omnibox_application.cc
|
| diff --git a/mandoline/ui/omnibox/omnibox_application.cc b/mandoline/ui/omnibox/omnibox_application.cc
|
| index 3c5491d09e1e86efa79cd83151876ad8eb538607..a6082c771e1b439b7eeb97d9463322a25ab05d8d 100644
|
| --- a/mandoline/ui/omnibox/omnibox_application.cc
|
| +++ b/mandoline/ui/omnibox/omnibox_application.cc
|
| @@ -51,8 +51,8 @@ class OmniboxImpl : public mus::WindowTreeDelegate,
|
| const ui::KeyEvent& key_event) override;
|
|
|
| // Overridden from Omnibox:
|
| - void GetViewTreeClient(
|
| - mojo::InterfaceRequest<mojo::ViewTreeClient> request) override;
|
| + void GetWindowTreeClient(
|
| + mojo::InterfaceRequest<mus::mojom::WindowTreeClient> request) override;
|
| void ShowForURL(const mojo::String& url) override;
|
|
|
| void HideWindow();
|
| @@ -189,8 +189,8 @@ bool OmniboxImpl::HandleKeyEvent(views::Textfield* sender,
|
| ////////////////////////////////////////////////////////////////////////////////
|
| // OmniboxImpl, Omnibox implementation:
|
|
|
| -void OmniboxImpl::GetViewTreeClient(
|
| - mojo::InterfaceRequest<mojo::ViewTreeClient> request) {
|
| +void OmniboxImpl::GetWindowTreeClient(
|
| + mojo::InterfaceRequest<mus::mojom::WindowTreeClient> request) {
|
| mus::WindowTreeConnection::Create(
|
| this, request.Pass(),
|
| mus::WindowTreeConnection::CreateType::DONT_WAIT_FOR_EMBED);
|
|
|