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

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

Issue 2388753003: Introduce cc::LocalFrameId and use in SurfaceFactory (Closed)
Patch Set: Fix exo_unittests Created 4 years, 2 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 unified diff | Download patch
OLDNEW
(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_LOCAL_FRAME_ID_H_
6 #define CC_SURFACES_LOCAL_FRAME_ID_H_
7
8 #include <inttypes.h>
9 #include <tuple>
10
11 #include "base/hash.h"
12 #include "base/strings/stringprintf.h"
13
14 namespace cc {
15
16 class LocalFrameId {
17 public:
18 constexpr LocalFrameId() : local_id_(0), nonce_(0) {}
19
20 constexpr LocalFrameId(const LocalFrameId& other)
21 : local_id_(other.local_id_), nonce_(other.nonce_) {}
22
23 constexpr LocalFrameId(uint32_t local_id, uint64_t nonce)
24 : local_id_(local_id), nonce_(nonce) {}
25
26 constexpr bool is_null() const { return local_id_ == 0 && nonce_ == 0; }
27
28 constexpr uint32_t local_id() const { return local_id_; }
29
30 constexpr uint64_t nonce() const { return nonce_; }
31
32 bool operator==(const LocalFrameId& other) const {
33 return local_id_ == other.local_id_ && nonce_ == other.nonce_;
34 }
35
36 bool operator!=(const LocalFrameId& other) const { return !(*this == other); }
37
38 bool operator<(const LocalFrameId& other) const {
39 return std::tie(local_id_, nonce_) <
40 std::tie(other.local_id_, other.nonce_);
41 }
42
43 size_t hash() const { return base::HashInts(local_id_, nonce_); }
44
45 std::string ToString() const {
46 return base::StringPrintf("LocalFrameId(%d, %" PRIu64 ")", local_id_,
47 nonce_);
48 }
49
50 private:
51 uint32_t local_id_;
52 uint64_t nonce_;
53 };
54
55 struct LocalFrameIdHash {
56 size_t operator()(const LocalFrameId& key) const { return key.hash(); }
57 };
58
59 } // namespace cc
60
61 #endif // CC_SURFACES_LOCAL_FRAME_ID_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698