OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "config.h" | 5 #include "config.h" |
6 #include "core/css/parser/SizesAttributeParser.h" | 6 #include "core/css/parser/SizesAttributeParser.h" |
7 | 7 |
8 #include "core/MediaTypeNames.h" | 8 #include "core/MediaTypeNames.h" |
9 #include "core/css/MediaQueryEvaluator.h" | 9 #include "core/css/MediaQueryEvaluator.h" |
10 #include "core/css/parser/CSSTokenizer.h" | 10 #include "core/css/parser/CSSTokenizer.h" |
11 #include "core/css/parser/SizesCalcParser.h" | 11 #include "core/css/parser/SizesCalcParser.h" |
12 | 12 |
13 namespace blink { | 13 namespace blink { |
14 | 14 |
15 SizesAttributeParser::SizesAttributeParser(PassRefPtr<MediaValues> mediaValues,
const String& attribute) | 15 SizesAttributeParser::SizesAttributeParser(PassRefPtrWillBeRawPtr<MediaValues> m
ediaValues, const String& attribute) |
16 : m_mediaValues(mediaValues) | 16 : m_mediaValues(mediaValues) |
17 , m_length(0) | 17 , m_length(0) |
18 , m_lengthWasSet(false) | 18 , m_lengthWasSet(false) |
19 { | 19 { |
20 m_isValid = parse(CSSTokenizer::Scope(attribute).tokenRange()); | 20 m_isValid = parse(CSSTokenizer::Scope(attribute).tokenRange()); |
21 } | 21 } |
22 | 22 |
23 float SizesAttributeParser::length() | 23 float SizesAttributeParser::length() |
24 { | 24 { |
25 if (m_isValid) | 25 if (m_isValid) |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 return effectiveSizeDefaultValue(); | 96 return effectiveSizeDefaultValue(); |
97 } | 97 } |
98 | 98 |
99 unsigned SizesAttributeParser::effectiveSizeDefaultValue() | 99 unsigned SizesAttributeParser::effectiveSizeDefaultValue() |
100 { | 100 { |
101 // Returning the equivalent of "100vw" | 101 // Returning the equivalent of "100vw" |
102 return m_mediaValues->viewportWidth(); | 102 return m_mediaValues->viewportWidth(); |
103 } | 103 } |
104 | 104 |
105 } // namespace | 105 } // namespace |
OLD | NEW |