blob: b14259d63def7aa26222b00c09bbd5565d3bce0b [file] [log] [blame]
// 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_MANAGER_H_
#define CC_SURFACES_SURFACE_MANAGER_H_
#include "base/containers/hash_tables.h"
#include "base/macros.h"
#include "cc/surfaces/surface_id.h"
#include "cc/surfaces/surfaces_export.h"
namespace cc {
class CompositorFrame;
class Surface;
class SurfaceClient;
class CC_SURFACES_EXPORT SurfaceManager {
public:
SurfaceManager();
~SurfaceManager();
SurfaceId RegisterAndAllocateIdForSurface(Surface* surface);
void DeregisterSurface(SurfaceId surface_id);
Surface* GetSurfaceForId(SurfaceId surface_id);
private:
typedef base::hash_map<int, Surface*> SurfaceMap;
SurfaceMap surface_map_;
int next_surface_id_;
DISALLOW_COPY_AND_ASSIGN(SurfaceManager);
};
} // namespace cc
#endif // CC_SURFACES_SURFACE_MANAGER_H_