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

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

Issue 812873003: Clean up forward declarations in WebKit/Source (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: style fix Created 6 years 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/bindings/core/v8/WebGLAny.h ('k') | Source/core/css/CSSPathValue.h » ('j') | 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) 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2008 Apple 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 17 matching lines...) Expand all
28 28
29 #include "core/css/CSSImageGeneratorValue.h" 29 #include "core/css/CSSImageGeneratorValue.h"
30 #include "core/css/CSSPrimitiveValue.h" 30 #include "core/css/CSSPrimitiveValue.h"
31 #include "wtf/RefPtr.h" 31 #include "wtf/RefPtr.h"
32 #include "wtf/Vector.h" 32 #include "wtf/Vector.h"
33 33
34 namespace blink { 34 namespace blink {
35 35
36 class FloatPoint; 36 class FloatPoint;
37 class Gradient; 37 class Gradient;
38 class TextLinkColors;
39 38
40 enum CSSGradientType { 39 enum CSSGradientType {
41 CSSDeprecatedLinearGradient, 40 CSSDeprecatedLinearGradient,
42 CSSDeprecatedRadialGradient, 41 CSSDeprecatedRadialGradient,
43 CSSPrefixedLinearGradient, 42 CSSPrefixedLinearGradient,
44 CSSPrefixedRadialGradient, 43 CSSPrefixedRadialGradient,
45 CSSLinearGradient, 44 CSSLinearGradient,
46 CSSRadialGradient 45 CSSRadialGradient
47 }; 46 };
48 enum CSSGradientRepeat { NonRepeating, Repeating }; 47 enum CSSGradientRepeat { NonRepeating, Repeating };
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 257
259 RefPtrWillBeMember<CSSPrimitiveValue> m_endHorizontalSize; 258 RefPtrWillBeMember<CSSPrimitiveValue> m_endHorizontalSize;
260 RefPtrWillBeMember<CSSPrimitiveValue> m_endVerticalSize; 259 RefPtrWillBeMember<CSSPrimitiveValue> m_endVerticalSize;
261 }; 260 };
262 261
263 DEFINE_CSS_VALUE_TYPE_CASTS(CSSRadialGradientValue, isRadialGradientValue()); 262 DEFINE_CSS_VALUE_TYPE_CASTS(CSSRadialGradientValue, isRadialGradientValue());
264 263
265 } // namespace blink 264 } // namespace blink
266 265
267 #endif // CSSGradientValue_h 266 #endif // CSSGradientValue_h
OLDNEW
« no previous file with comments | « Source/bindings/core/v8/WebGLAny.h ('k') | Source/core/css/CSSPathValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698