OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2016 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 // This class contains information about the surface that is being embedded. | |
14 class SurfaceInfo { | |
15 public: | |
16 SurfaceInfo() = default; | |
Fady Samuel
2016/12/14 20:11:39
Do you need this default constructor?
Saman Sami
2016/12/14 20:47:52
We might need it for mojo.
| |
17 SurfaceInfo(const SurfaceId& id, float scale, gfx::Size size) | |
kylechar
2016/12/14 20:51:53
const gfx::Size& size
Saman Sami
2016/12/14 21:54:22
Done.
| |
18 : id_(id), scale_(scale), size_(size) {} | |
19 | |
20 bool operator==(const SurfaceInfo& info) const { | |
21 return id_ == info.id() && scale_ == info.scale() && size_ == info.size(); | |
22 } | |
23 | |
24 bool operator!=(const SurfaceInfo& info) const { return !(*this == info); } | |
25 | |
26 const SurfaceId& id() const { return id_; } | |
27 float scale() const { return scale_; } | |
28 const gfx::Size& size() const { return size_; } | |
29 | |
30 private: | |
31 SurfaceId id_; | |
32 float scale_ = 1.f; | |
33 gfx::Size size_; | |
34 }; | |
35 | |
36 } // namespace cc | |
37 | |
38 #endif // CC_SURFACES_SURFACE_INFO_H_ | |
OLD | NEW |