| Index: mandoline/tab/frame_connection.cc
|
| diff --git a/mandoline/tab/frame_connection.cc b/mandoline/tab/frame_connection.cc
|
| index 5b14f8d5c4f12167a448b7dbe09e80299c932f9f..cc5b36fda0e1d50e4ef9a0e0a9d2c89eb3706e6f 100644
|
| --- a/mandoline/tab/frame_connection.cc
|
| +++ b/mandoline/tab/frame_connection.cc
|
| @@ -30,7 +30,7 @@ FrameConnection::~FrameConnection() {
|
|
|
| void FrameConnection::Init(mojo::ApplicationImpl* app,
|
| mojo::URLRequestPtr request,
|
| - mojo::ViewManagerClientPtr* view_manage_client) {
|
| + mojo::ViewTreeClientPtr* view_tree_client) {
|
| DCHECK(!application_connection_);
|
|
|
| mojo::CapabilityFilterPtr filter(mojo::CapabilityFilter::New());
|
| @@ -69,7 +69,7 @@ void FrameConnection::Init(mojo::ApplicationImpl* app,
|
|
|
| application_connection_ = app->ConnectToApplicationWithCapabilityFilter(
|
| request.Pass(), filter.Pass());
|
| - application_connection_->ConnectToService(view_manage_client);
|
| + application_connection_->ConnectToService(view_tree_client);
|
| application_connection_->ConnectToService(&frame_tree_client_);
|
| frame_tree_client_.set_connection_error_handler([]() {
|
| // TODO(sky): implement this.
|
|
|