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

Side by Side Diff: Source/core/css/CSSValue.cpp

Issue 15387004: Remove some unused includes from core/css and core/dom (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: Created 7 years, 7 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/CSSSupportsRule.cpp ('k') | Source/core/css/CSSValuePool.cpp » ('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) 2011 Andreas Kling (kling@webkit.org) 2 * Copyright (C) 2011 Andreas Kling (kling@webkit.org)
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 18 matching lines...) Expand all
29 29
30 #include "core/css/CSSAspectRatioValue.h" 30 #include "core/css/CSSAspectRatioValue.h"
31 #include "core/css/CSSBorderImageSliceValue.h" 31 #include "core/css/CSSBorderImageSliceValue.h"
32 #include "core/css/CSSCalculationValue.h" 32 #include "core/css/CSSCalculationValue.h"
33 #include "core/css/CSSCanvasValue.h" 33 #include "core/css/CSSCanvasValue.h"
34 #include "core/css/CSSCrossfadeValue.h" 34 #include "core/css/CSSCrossfadeValue.h"
35 #include "core/css/CSSCursorImageValue.h" 35 #include "core/css/CSSCursorImageValue.h"
36 #include "core/css/CSSFontFaceSrcValue.h" 36 #include "core/css/CSSFontFaceSrcValue.h"
37 #include "core/css/CSSFunctionValue.h" 37 #include "core/css/CSSFunctionValue.h"
38 #include "core/css/CSSGradientValue.h" 38 #include "core/css/CSSGradientValue.h"
39 #include "core/css/CSSImageGeneratorValue.h"
40 #include "core/css/CSSImageSetValue.h" 39 #include "core/css/CSSImageSetValue.h"
41 #include "core/css/CSSImageValue.h" 40 #include "core/css/CSSImageValue.h"
42 #include "core/css/CSSInheritedValue.h" 41 #include "core/css/CSSInheritedValue.h"
43 #include "core/css/CSSInitialValue.h" 42 #include "core/css/CSSInitialValue.h"
44 #include "core/css/CSSLineBoxContainValue.h" 43 #include "core/css/CSSLineBoxContainValue.h"
45 #include "core/css/CSSPrimitiveValue.h" 44 #include "core/css/CSSPrimitiveValue.h"
46 #include "core/css/CSSReflectValue.h" 45 #include "core/css/CSSReflectValue.h"
47 #include "core/css/CSSTimingFunctionValue.h" 46 #include "core/css/CSSTimingFunctionValue.h"
48 #include "core/css/CSSUnicodeRangeValue.h" 47 #include "core/css/CSSUnicodeRangeValue.h"
49 #include "core/css/CSSValueList.h" 48 #include "core/css/CSSValueList.h"
(...skipping 555 matching lines...) Expand 10 before | Expand all | Expand 10 after
605 case SVGPaintClass: 604 case SVGPaintClass:
606 return static_cast<const SVGPaint*>(this)->cloneForCSSOM(); 605 return static_cast<const SVGPaint*>(this)->cloneForCSSOM();
607 #endif 606 #endif
608 default: 607 default:
609 ASSERT(!isSubtypeExposedToCSSOM()); 608 ASSERT(!isSubtypeExposedToCSSOM());
610 return TextCloneCSSValue::create(classType(), cssText()); 609 return TextCloneCSSValue::create(classType(), cssText());
611 } 610 }
612 } 611 }
613 612
614 } 613 }
OLDNEW
« no previous file with comments | « Source/core/css/CSSSupportsRule.cpp ('k') | Source/core/css/CSSValuePool.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698