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

Side by Side Diff: third_party/WebKit/Source/core/css/CSSPrimitiveValue.h

Issue 2813863003: Rewrite references to "wtf/" to "platform/wtf/" in core/css and core/style. (Closed)
Patch Set: Rebase. Created 3 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
OLDNEW
1 /* 1 /*
2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2004, 2005, 2006, 2008 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006, 2008 Apple Inc. All rights reserved.
4 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> 4 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org>
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
11 * This library is distributed in the hope that it will be useful, 11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Library General Public License for more details. 14 * Library General Public License for more details.
15 * 15 *
16 * You should have received a copy of the GNU Library General Public License 16 * You should have received a copy of the GNU Library General Public License
17 * along with this library; see the file COPYING.LIB. If not, write to 17 * along with this library; see the file COPYING.LIB. If not, write to
18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 * Boston, MA 02110-1301, USA. 19 * Boston, MA 02110-1301, USA.
20 */ 20 */
21 21
22 #ifndef CSSPrimitiveValue_h 22 #ifndef CSSPrimitiveValue_h
23 #define CSSPrimitiveValue_h 23 #define CSSPrimitiveValue_h
24 24
25 #include "core/CSSPropertyNames.h" 25 #include "core/CSSPropertyNames.h"
26 #include "core/CSSValueKeywords.h" 26 #include "core/CSSValueKeywords.h"
27 #include "core/CoreExport.h" 27 #include "core/CoreExport.h"
28 #include "core/css/CSSValue.h" 28 #include "core/css/CSSValue.h"
29 #include "wtf/BitVector.h" 29 #include "platform/wtf/BitVector.h"
30 #include "wtf/Forward.h" 30 #include "platform/wtf/Forward.h"
31 #include "wtf/MathExtras.h" 31 #include "platform/wtf/MathExtras.h"
32 #include "wtf/text/StringHash.h" 32 #include "platform/wtf/text/StringHash.h"
33 #include "wtf/text/StringView.h" 33 #include "platform/wtf/text/StringView.h"
34 34
35 namespace blink { 35 namespace blink {
36 36
37 class CSSCalcValue; 37 class CSSCalcValue;
38 class CSSToLengthConversionData; 38 class CSSToLengthConversionData;
39 class Length; 39 class Length;
40 40
41 // Dimension calculations are imprecise, often resulting in values of e.g. 41 // Dimension calculations are imprecise, often resulting in values of e.g.
42 // 44.99998. We need to go ahead and round if we're really close to the next 42 // 44.99998. We need to go ahead and round if we're really close to the next
43 // integer value. 43 // integer value.
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
335 short CSSPrimitiveValue::ComputeLength(const CSSToLengthConversionData&) const; 335 short CSSPrimitiveValue::ComputeLength(const CSSToLengthConversionData&) const;
336 336
337 template <> 337 template <>
338 float CSSPrimitiveValue::ComputeLength(const CSSToLengthConversionData&) const; 338 float CSSPrimitiveValue::ComputeLength(const CSSToLengthConversionData&) const;
339 339
340 template <> 340 template <>
341 double CSSPrimitiveValue::ComputeLength(const CSSToLengthConversionData&) const; 341 double CSSPrimitiveValue::ComputeLength(const CSSToLengthConversionData&) const;
342 } // namespace blink 342 } // namespace blink
343 343
344 #endif // CSSPrimitiveValue_h 344 #endif // CSSPrimitiveValue_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSPathValue.h ('k') | third_party/WebKit/Source/core/css/CSSPrimitiveValue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698