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

Side by Side Diff: Source/core/css/CSSLengthData.h

Issue 227043007: CSS Length calculation with MediaValues (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@sizes_parser3
Patch Set: Fix debug compile issue Created 6 years, 8 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
« no previous file with comments | « Source/core/css/CSSCalculationValue.cpp ('k') | Source/core/css/CSSPrimitiveValue.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CSSLengthData_h
6 #define CSSLengthData_h
7
8 namespace WebCore {
9 class CSSLengthData {
10 public:
11 virtual ~CSSLengthData() { }
12 virtual float zoom() const = 0;
13 virtual bool computingFontSize() const = 0;
14 virtual double fontSpecifiedSize() const = 0;
15 virtual double fontComputedSize() const = 0;
16 virtual double rootFontSpecifiedSize() const = 0;
17 virtual double rootFontComputedSize() const = 0;
18 virtual bool hasXHeight() const = 0;
19 virtual double xHeight() const = 0;
20 virtual double zeroWidth() const = 0;
21 virtual bool hasRoot() const = 0;
22
23 virtual double viewportWidthPercent() const = 0;
24 virtual double viewportHeightPercent() const = 0;
25 virtual double viewportMinPercent() const = 0;
26 virtual double viewportMaxPercent() const = 0;
27 };
28
29 } // namespace
30
31 #endif // CSSLengthData_h
32
OLDNEW
« no previous file with comments | « Source/core/css/CSSCalculationValue.cpp ('k') | Source/core/css/CSSPrimitiveValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698