Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1382)

Unified Diff: cc/surfaces/surface_manager.h

Issue 131893003: Skeleton surface interfaces in cc/surfaces (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add base and ui/gfx deps to fix win/mac component link Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/surfaces/surface.cc ('k') | cc/surfaces/surface_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/surfaces/surface_manager.h
diff --git a/cc/surfaces/surface_manager.h b/cc/surfaces/surface_manager.h
new file mode 100644
index 0000000000000000000000000000000000000000..fe12dbfc5d01edfd1afeb15865128e0ebbfbe284
--- /dev/null
+++ b/cc/surfaces/surface_manager.h
@@ -0,0 +1,39 @@
+// 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/surfaces_export.h"
+
+namespace gfx { class Size; }
+
+namespace cc {
+class CompositorFrame;
+class Surface;
+
+class CC_SURFACES_EXPORT SurfaceManager {
+ public:
+ SurfaceManager();
+ ~SurfaceManager();
+
+ int RegisterAndAllocateIDForSurface(Surface* surface);
+ void DeregisterSurface(int surface_id);
+
+ Surface* GetSurfaceForID(int 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_
« no previous file with comments | « cc/surfaces/surface.cc ('k') | cc/surfaces/surface_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698