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

Unified Diff: Source/core/css/CSSPrimitiveValue.cpp

Issue 14242011: Absolutify paths to css/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/css/CSSPrimitiveValue.h ('k') | Source/core/css/CSSPrimitiveValueMappings.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSPrimitiveValue.cpp
diff --git a/Source/core/css/CSSPrimitiveValue.cpp b/Source/core/css/CSSPrimitiveValue.cpp
index a751a2470ba2d8a99b121d9e8a41af3b3d839ba7..7c792d12d4f055ba4538a8381aa6307077801835 100644
--- a/Source/core/css/CSSPrimitiveValue.cpp
+++ b/Source/core/css/CSSPrimitiveValue.cpp
@@ -19,22 +19,22 @@
*/
#include "config.h"
-#include "CSSPrimitiveValue.h"
+#include "core/css/CSSPrimitiveValue.h"
-#include "CSSBasicShapes.h"
-#include "CSSCalculationValue.h"
-#include "CSSHelper.h"
-#include "CSSParser.h"
#include "CSSPropertyNames.h"
#include "CSSValueKeywords.h"
-#include "Counter.h"
#include "ExceptionCode.h"
#include "Node.h"
-#include "Pair.h"
-#include "RGBColor.h"
-#include "Rect.h"
-#include "StyleSheetContents.h"
#include "WebCoreMemoryInstrumentation.h"
+#include "core/css/CSSBasicShapes.h"
+#include "core/css/CSSCalculationValue.h"
+#include "core/css/CSSHelper.h"
+#include "core/css/CSSParser.h"
+#include "core/css/Counter.h"
+#include "core/css/Pair.h"
+#include "core/css/RGBColor.h"
+#include "core/css/Rect.h"
+#include "core/css/StyleSheetContents.h"
#include "core/platform/CalculationValue.h"
#include "core/platform/LayoutUnit.h"
#include "core/platform/graphics/Color.h"
@@ -125,7 +125,7 @@ static inline bool isValidCSSUnitTypeForDoubleConversion(CSSPrimitiveValue::Unit
static CSSPrimitiveValue::UnitCategory unitCategory(CSSPrimitiveValue::UnitTypes type)
{
// Here we violate the spec (http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPrimitiveValue) and allow conversions
- // between CSS_PX and relative lengths (see cssPixelsPerInch comment in CSSHelper.h for the topic treatment).
+ // between CSS_PX and relative lengths (see cssPixelsPerInch comment in core/css/CSSHelper.h for the topic treatment).
switch (type) {
case CSSPrimitiveValue::CSS_NUMBER:
return CSSPrimitiveValue::UNumber;
« no previous file with comments | « Source/core/css/CSSPrimitiveValue.h ('k') | Source/core/css/CSSPrimitiveValueMappings.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698