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

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

Issue 2932593004: Update the snap points css properties (Closed)
Patch Set: Rebase and Add QuadLengthValue.h 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 {
majidvp 2017/06/15 13:57:11 nit: typical style is to have a blank line after n
12 struct QuadLengthValue {
13 DISALLOW_NEW();
14
15 QuadLengthValue() {}
16
17 explicit QuadLengthValue(Length length)
18 : top(length), right(length), bottom(length), left(length) {}
19
20 QuadLengthValue(const QuadLengthValue& other)
21 : top(other.top),
22 right(other.right),
23 bottom(other.bottom),
24 left(other.left) {}
25
26 bool operator==(const QuadLengthValue& other) const {
27 return top == other.top && right == other.right && bottom == other.bottom &&
28 left == other.left;
29 }
30
31 bool operator!=(const QuadLengthValue& other) const {
32 return !(*this == other);
33 }
34
35 Length top;
36 Length right;
37 Length bottom;
38 Length left;
39 };
40
41 } // namespace blink
42
43 #endif // QuadLengthValue_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698