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

Side by Side Diff: cc/surfaces/surface_info.h

Issue 2514033002: Introducing SurfaceReferenceFactory (Closed)
Patch Set: Created 4 years, 1 month 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2012 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.
4
5 #ifndef CC_SURFACES_SURFACE_INFO_H_
6 #define CC_SURFACES_SURFACE_INFO_H_
7
8 #include "cc/surfaces/surface_id.h"
9 #include "ui/gfx/geometry/size.h"
10
11 namespace cc {
12
13 // TODO(samans): Add documentation
14 class SurfaceInfo {
15 public:
16 SurfaceInfo() {}
17 SurfaceInfo(const SurfaceId& surface_id, float scale, const gfx::Size& size)
18 : id_(surface_id), scale_(scale), size_(size) {}
19 /*
20 virtual void AddReference() = 0;
21 virtual void RemoveReference() = 0;
22 */
23
24 void SetId(const SurfaceId& id) { id_ = id; }
25 void SetScale(float scale) { scale_ = scale; }
26 void SetSize(const gfx::Size& size) { size_ = size; }
27
28 const SurfaceId& id() const { return id_; }
29 float scale() const { return scale_; }
30 const gfx::Size& size() const { return size_; }
31
32 private:
33 SurfaceId id_;
34 float scale_ = 1.f;
35 gfx::Size size_;
36 };
37
38 } // namespace cc
39
40 #endif // CC_SURFACES_SURFACE_INFO_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698