| Index: components/web_view/frame_tree.cc
 | 
| diff --git a/components/web_view/frame_tree.cc b/components/web_view/frame_tree.cc
 | 
| index e97db0f8eaa2b29092fd0f0839b15862a0c9778d..8d0aca0c9a7ab30aa7e51829fefd20c740553304 100644
 | 
| --- a/components/web_view/frame_tree.cc
 | 
| +++ b/components/web_view/frame_tree.cc
 | 
| @@ -10,7 +10,7 @@
 | 
|  namespace web_view {
 | 
|  
 | 
|  FrameTree::FrameTree(uint32_t root_app_id,
 | 
| -                     mojo::View* view,
 | 
| +                     mus::View* view,
 | 
|                       mojo::ViewTreeClientPtr view_tree_client,
 | 
|                       FrameTreeDelegate* delegate,
 | 
|                       FrameTreeClient* root_client,
 | 
| @@ -43,7 +43,7 @@ Frame* FrameTree::CreateSharedFrame(
 | 
|      uint32_t frame_id,
 | 
|      uint32_t app_id,
 | 
|      const Frame::ClientPropertyMap& client_properties) {
 | 
| -  mojo::View* frame_view = root_->view()->GetChildById(frame_id);
 | 
| +  mus::View* frame_view = root_->view()->GetChildById(frame_id);
 | 
|    // |frame_view| may be null if the View hasn't been created yet. If this is
 | 
|    // the case the View will be connected to the Frame in Frame::OnTreeChanged.
 | 
|    Frame* frame =
 | 
| 
 |