From e5cb39f8149513f7ca00a50461bb284503e4c6ce Mon Sep 17 00:00:00 2001 From: James Robinson Date: Fri, 30 Jan 2015 13:02:48 -0800 Subject: [PATCH] Remove mojo.SurfacesService interface in favor of mojo.Surface directly Most of the callers have been updated to the new flow already. This updates the rest and removes the deprecated interface to simplify the flows in preparation for de-Clienting this interface. Chromium caller updated to not use this interface here: https://codereview.chromium.org/869343004/ R=sky@chromium.org BUG=451319 Review URL: https://codereview.chromium.org/882083003 --- compositor/surface_holder.h | 1 - viewer/document_view.cc | 1 - 2 files changed, 2 deletions(-) diff --git a/compositor/surface_holder.h b/compositor/surface_holder.h index 78a073f7c5c..5f08e468fe0 100644 --- a/compositor/surface_holder.h +++ b/compositor/surface_holder.h @@ -10,7 +10,6 @@ #include "base/memory/weak_ptr.h" #include "mojo/services/surfaces/public/interfaces/surface_id.mojom.h" #include "mojo/services/surfaces/public/interfaces/surfaces.mojom.h" -#include "mojo/services/surfaces/public/interfaces/surfaces_service.mojom.h" #include "ui/gfx/geometry/rect.h" namespace mojo { diff --git a/viewer/document_view.cc b/viewer/document_view.cc index 2990c586166..09e3a21e458 100644 --- a/viewer/document_view.cc +++ b/viewer/document_view.cc @@ -15,7 +15,6 @@ #include "mojo/public/cpp/application/connect.h" #include "mojo/public/cpp/system/data_pipe.h" #include "mojo/public/interfaces/application/shell.mojom.h" -#include "mojo/services/surfaces/public/interfaces/surfaces_service.mojom.h" #include "mojo/services/view_manager/public/cpp/view.h" #include "mojo/services/view_manager/public/cpp/view_manager.h" #include "skia/ext/refptr.h"