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

Side by Side Diff: Source/platform/BorderImageLength.h

Issue 55833002: Rewrite BorderImageLength to not use the Relative length type (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@length-relative-die-step-2-4
Patch Set: Rebased on top of https://codereview.chromium.org/55813002/ Created 7 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2013, Opera Software ASA. All rights reserved. 2 * Copyright (c) 2013, Opera Software ASA. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 19 matching lines...) Expand all
30 30
31 #ifndef BorderImageLength_h 31 #ifndef BorderImageLength_h
32 #define BorderImageLength_h 32 #define BorderImageLength_h
33 33
34 #include "platform/Length.h" 34 #include "platform/Length.h"
35 35
36 namespace WebCore { 36 namespace WebCore {
37 37
38 class PLATFORM_EXPORT BorderImageLength { 38 class PLATFORM_EXPORT BorderImageLength {
39 public: 39 public:
40 // Default is 'auto'
Julien - ping for review 2013/11/04 18:30:25 Default _Length_ is 'auto' if that changed, this w
40 BorderImageLength() 41 BorderImageLength()
42 : m_number(0)
43 , m_type(LengthType)
41 { 44 {
42 } 45 }
43 46
44 BorderImageLength(double number) 47 BorderImageLength(double number)
45 : m_length(number, Relative) 48 : m_length(Undefined)
49 , m_number(number)
50 , m_type(NumberType)
46 { 51 {
47 } 52 }
48 53
49 BorderImageLength(const Length& length) 54 BorderImageLength(const Length& length)
50 : m_length(length) 55 : m_length(length)
56 , m_number(0)
57 , m_type(LengthType)
51 { 58 {
52 } 59 }
53 60
54 bool isNumber() const { return m_length.isRelative(); } 61 bool isNumber() const { return m_type == NumberType; }
55 bool isLength() const { return !isNumber(); } 62 bool isLength() const { return m_type == LengthType; }
56 63
57 const Length& length() const { ASSERT(isLength()); return m_length; } 64 const Length& length() const { ASSERT(isLength()); return m_length; }
58 Length& length() { ASSERT(isLength()); return m_length; } 65 Length& length() { ASSERT(isLength()); return m_length; }
59 66
60 double number() const { ASSERT(isNumber()); return m_length.value(); } 67 double number() const { ASSERT(isNumber()); return m_number; }
61 68
62 bool operator==(const BorderImageLength& o) const 69 bool operator==(const BorderImageLength& o) const
63 { 70 {
64 return m_length == o.m_length; 71 return m_length == o.m_length && m_number == o.m_number && m_type == o.m _type;
Julien - ping for review 2013/11/04 18:30:25 Nit: Let's put m_type first. And |o| -> |other| ^_
65 } 72 }
66 73
67 bool isZero() const 74 bool isZero() const
68 { 75 {
69 return m_length.isZero(); 76 return (isLength() && m_length.isZero()) || (isNumber() && m_number);
70 } 77 }
71 78
72 private: 79 private:
80 // Ideally we would put the 2 following fields in a union, but Length has a constructor,
81 // a destructor and a copy assignment which isn't allowed.
73 Length m_length; 82 Length m_length;
83 double m_number;
84 enum {
85 LengthType,
86 NumberType
87 } m_type;
74 }; 88 };
75 89
76 } // namespace WebCore 90 } // namespace WebCore
77 91
78 #endif // BorderImageLength_h 92 #endif // BorderImageLength_h
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698