| Index: components/web_view/frame_connection.h
|
| diff --git a/components/web_view/frame_connection.h b/components/web_view/frame_connection.h
|
| index fc4c9221be3d68d7bcee05f39bb62983f8eaef18..2a1d29e5f1142c2cb2da64565b8b5d411f3ae977 100644
|
| --- a/components/web_view/frame_connection.h
|
| +++ b/components/web_view/frame_connection.h
|
| @@ -11,7 +11,7 @@
|
| #include "components/mus/public/interfaces/view_tree.mojom.h"
|
| #include "components/web_view/frame_tree_delegate.h"
|
| #include "components/web_view/frame_user_data.h"
|
| -#include "components/web_view/public/interfaces/frame_tree.mojom.h"
|
| +#include "components/web_view/public/interfaces/frame.mojom.h"
|
| #include "mojo/services/network/public/interfaces/url_loader.mojom.h"
|
|
|
| namespace mojo {
|
| @@ -47,7 +47,7 @@ class FrameConnection : public FrameUserData {
|
| mojo::URLRequestPtr request,
|
| const base::Closure& on_got_id_callback);
|
|
|
| - FrameTreeClient* frame_tree_client() { return frame_tree_client_.get(); }
|
| + mojom::FrameClient* frame_client() { return frame_client_.get(); }
|
|
|
| mojo::ApplicationConnection* application_connection() {
|
| return application_connection_.get();
|
| @@ -61,7 +61,7 @@ class FrameConnection : public FrameUserData {
|
| uint32_t GetContentHandlerID() const;
|
|
|
| private:
|
| - FrameTreeClientPtr frame_tree_client_;
|
| + mojom::FrameClientPtr frame_client_;
|
|
|
| scoped_ptr<mojo::ApplicationConnection> application_connection_;
|
|
|
|
|