| Index: components/view_manager/public/cpp/lib/view_tree_client_impl.h
|
| diff --git a/components/view_manager/public/cpp/lib/view_tree_client_impl.h b/components/view_manager/public/cpp/lib/view_tree_client_impl.h
|
| index f4e05c4e36e0fc73e6103cf2ef36165d2920f04c..5fcc0cf58a607241c48712e3e7867615fecd40be 100644
|
| --- a/components/view_manager/public/cpp/lib/view_tree_client_impl.h
|
| +++ b/components/view_manager/public/cpp/lib/view_tree_client_impl.h
|
| @@ -41,7 +41,6 @@ class ViewTreeClientImpl : public ViewTreeConnection, public ViewTreeClient {
|
| bool OwnsView(Id id) const;
|
|
|
| void SetBounds(Id view_id, const Rect& bounds);
|
| - void SetSurfaceId(Id view_id, SurfaceIdPtr surface_id);
|
| void SetFocus(Id view_id);
|
| void SetVisible(Id view_id, bool visible);
|
| void SetProperty(Id view_id,
|
| @@ -58,6 +57,10 @@ class ViewTreeClientImpl : public ViewTreeConnection, public ViewTreeClient {
|
| void Embed(Id view_id, ViewTreeClientPtr client);
|
| void EmbedAllowingReembed(mojo::URLRequestPtr request, Id view_id);
|
|
|
| + void RequestSurface(Id view_id,
|
| + InterfaceRequest<Surface> surface,
|
| + SurfaceClientPtr client);
|
| +
|
| void set_change_acked_callback(const Callback<void(void)>& callback) {
|
| change_acked_callback_ = callback;
|
| }
|
|
|