summaryrefslogtreecommitdiffstats
path: root/chromium/cc/surfaces/surface_client.h
blob: 88758729b82c38408d0cd3a8a30cf04489627b91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CC_SURFACES_SURFACE_CLIENT_H_
#define CC_SURFACES_SURFACE_CLIENT_H_

#include "cc/resources/returned_resource.h"
#include "cc/surfaces/surfaces_export.h"

namespace cc {

class CC_SURFACES_EXPORT SurfaceClient {
 public:
  virtual ~SurfaceClient() {}

  virtual void ReturnResources(const ReturnedResourceArray& resources) = 0;
};

}  // namespace cc

#endif  // CC_SURFACES_SURFACE_CLIENT_H_