| Index: cc/surfaces/surface.h
|
| diff --git a/cc/surfaces/surface.h b/cc/surfaces/surface.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e18d1214fe186981f273a3bb6b2cd5d0ddce08d5
|
| --- /dev/null
|
| +++ b/cc/surfaces/surface.h
|
| @@ -0,0 +1,37 @@
|
| +// 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_H_
|
| +#define CC_SURFACES_SURFACE_H_
|
| +
|
| +#include "base/macros.h"
|
| +#include "cc/surfaces/surfaces_export.h"
|
| +#include "ui/gfx/size.h"
|
| +
|
| +namespace cc {
|
| +class SurfaceManager;
|
| +class SurfaceClient;
|
| +
|
| +class CC_SURFACES_EXPORT Surface {
|
| + public:
|
| + Surface(SurfaceManager* manager,
|
| + SurfaceClient* client,
|
| + const gfx::Size& size);
|
| + ~Surface();
|
| +
|
| + const gfx::Size& size() const { return size_; }
|
| + int surface_id() const { return surface_id_; }
|
| +
|
| + private:
|
| + SurfaceManager* manager_;
|
| + SurfaceClient* client_;
|
| + gfx::Size size_;
|
| + int surface_id_;
|
| +
|
| + DISALLOW_COPY_AND_ASSIGN(Surface);
|
| +};
|
| +
|
| +} // namespace cc
|
| +
|
| +#endif // CC_SURFACES_SURFACE_H_
|
|
|