Mandoline UI Process: Update namespaces and file names
[chromium-blink-merge.git] / components / mus / public / cpp / view_surface_client.h
blob0ac2c5435bfb01b95213098e4df8ec8d8f71b73f
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef COMPONENTS_MUS_PUBLIC_CPP_VIEW_SURFACE_CLIENT_H_
6 #define COMPONENTS_MUS_PUBLIC_CPP_VIEW_SURFACE_CLIENT_H_
8 namespace mus {
10 class ViewSurface;
12 class ViewSurfaceClient {
13 public:
14 virtual void OnResourcesReturned(
15 ViewSurface* surface,
16 mojo::Array<mojo::ReturnedResourcePtr> resources) = 0;
18 protected:
19 ~ViewSurfaceClient() {}
22 } // namespace mus
24 #endif // COMPONENTS_MUS_PUBLIC_CPP_VIEW_SURFACE_CLIENT_H_