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

Side by Side Diff: third_party/WebKit/Source/core/css/CSSCalculationValue.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 * Copyright (C) 2011, 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2011, 2012 Google Inc. 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 18 matching lines...) Expand all
29 */ 29 */
30 30
31 #ifndef CSSCalculationValue_h 31 #ifndef CSSCalculationValue_h
32 #define CSSCalculationValue_h 32 #define CSSCalculationValue_h
33 33
34 #include "core/CoreExport.h" 34 #include "core/CoreExport.h"
35 #include "core/css/CSSPrimitiveValue.h" 35 #include "core/css/CSSPrimitiveValue.h"
36 #include "core/css/CSSValue.h" 36 #include "core/css/CSSValue.h"
37 #include "core/css/parser/CSSParserTokenRange.h" 37 #include "core/css/parser/CSSParserTokenRange.h"
38 #include "platform/CalculationValue.h" 38 #include "platform/CalculationValue.h"
39 #include "wtf/Forward.h" 39 #include "platform/wtf/Forward.h"
40 40
41 namespace blink { 41 namespace blink {
42 42
43 class CalculationValue; 43 class CalculationValue;
44 44
45 enum CalcOperator { 45 enum CalcOperator {
46 kCalcAdd = '+', 46 kCalcAdd = '+',
47 kCalcSubtract = '-', 47 kCalcSubtract = '-',
48 kCalcMultiply = '*', 48 kCalcMultiply = '*',
49 kCalcDivide = '/' 49 kCalcDivide = '/'
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 149
150 double ClampToPermittedRange(double) const; 150 double ClampToPermittedRange(double) const;
151 151
152 const Member<CSSCalcExpressionNode> expression_; 152 const Member<CSSCalcExpressionNode> expression_;
153 const bool non_negative_; 153 const bool non_negative_;
154 }; 154 };
155 155
156 } // namespace blink 156 } // namespace blink
157 157
158 #endif // CSSCalculationValue_h 158 #endif // CSSCalculationValue_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698