Infer appropriate GNU_STACK alignment for a shared library.
[chromium-blink-merge.git] / cc / surfaces / surface_resource_holder.h
blob20c9f2918489291486a178829563c0e82486534c
1 // Copyright 2014 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 CC_SURFACES_SURFACE_RESOURCE_HOLDER_H_
6 #define CC_SURFACES_SURFACE_RESOURCE_HOLDER_H_
8 #include "base/containers/hash_tables.h"
9 #include "base/macros.h"
10 #include "cc/resources/resource_provider.h"
11 #include "cc/resources/returned_resource.h"
12 #include "cc/surfaces/surfaces_export.h"
14 namespace cc {
15 class SurfaceFactoryClient;
17 // A SurfaceResourceHolder manages the lifetime of resources submitted by a
18 // particular SurfaceFactory. Each resource is held by the service until
19 // it is no longer referenced by any pending frames or by any
20 // resource providers.
21 class CC_SURFACES_EXPORT SurfaceResourceHolder {
22 public:
23 explicit SurfaceResourceHolder(SurfaceFactoryClient* client);
24 ~SurfaceResourceHolder();
26 void ReceiveFromChild(const TransferableResourceArray& resources);
27 void RefResources(const TransferableResourceArray& resources);
28 void UnrefResources(const ReturnedResourceArray& resources);
30 private:
31 SurfaceFactoryClient* client_;
33 struct ResourceRefs {
34 ResourceRefs();
36 int refs_received_from_child;
37 int refs_holding_resource_alive;
39 // Keeps track of the number of users currently in flight for each resource
40 // ID we've received from the client. When this counter hits zero for a
41 // particular resource, that ID is available to return to the client.
42 typedef base::hash_map<ResourceProvider::ResourceId, ResourceRefs>
43 ResourceIdCountMap;
44 ResourceIdCountMap resource_id_use_count_map_;
46 DISALLOW_COPY_AND_ASSIGN(SurfaceResourceHolder);
49 } // namespace cc
51 #endif // CC_SURFACES_SURFACE_RESOURCE_HOLDER_H_