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

Side by Side Diff: third_party/WebKit/Source/core/style/QuadLengthValue.h

Issue 2932593004: Update the snap points css properties (Closed)
Patch Set: Fix nits Created 3 years, 6 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 2017 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 QuadLengthValue_h
6 #define QuadLengthValue_h
7
8 #include <memory>
9 #include "platform/Length.h"
10
11 namespace blink {
12
13 struct QuadLengthValue {
14 DISALLOW_NEW();
15
16 QuadLengthValue() {}
17
18 explicit QuadLengthValue(Length length)
19 : top(length), right(length), bottom(length), left(length) {}
20
21 QuadLengthValue(const QuadLengthValue& other)
22 : top(other.top),
23 right(other.right),
24 bottom(other.bottom),
25 left(other.left) {}
26
27 bool operator==(const QuadLengthValue& other) const {
28 return top == other.top && right == other.right && bottom == other.bottom &&
29 left == other.left;
30 }
31
32 bool operator!=(const QuadLengthValue& other) const {
33 return !(*this == other);
34 }
35
36 Length top;
37 Length right;
38 Length bottom;
39 Length left;
40 };
41
42 } // namespace blink
43
44 #endif // QuadLengthValue_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698