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

Side by Side Diff: third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp

Issue 1373433002: Split out CSSPrimitiveValue's PropertyID into CSSCustomIdentValue (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@split_string
Patch Set: Created 5 years, 2 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) 2004 Zack Rusin <zack@kde.org> 2 * Copyright (C) 2004 Zack Rusin <zack@kde.org>
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
4 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> 4 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org>
5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> 5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com>
6 * Copyright (C) 2011 Sencha, Inc. All rights reserved. 6 * Copyright (C) 2011 Sencha, Inc. All rights reserved.
7 * Copyright (C) 2015 Google Inc. All rights reserved. 7 * Copyright (C) 2015 Google Inc. All rights reserved.
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public 10 * modify it under the terms of the GNU Lesser General Public
(...skipping 22 matching lines...) Expand all
33 #include "core/css/CSSCounterValue.h" 33 #include "core/css/CSSCounterValue.h"
34 #include "core/css/CSSFontFeatureValue.h" 34 #include "core/css/CSSFontFeatureValue.h"
35 #include "core/css/CSSFunctionValue.h" 35 #include "core/css/CSSFunctionValue.h"
36 #include "core/css/CSSGridLineNamesValue.h" 36 #include "core/css/CSSGridLineNamesValue.h"
37 #include "core/css/CSSGridTemplateAreasValue.h" 37 #include "core/css/CSSGridTemplateAreasValue.h"
38 #include "core/css/CSSPathValue.h" 38 #include "core/css/CSSPathValue.h"
39 #include "core/css/CSSPrimitiveValueMappings.h" 39 #include "core/css/CSSPrimitiveValueMappings.h"
40 #include "core/css/CSSQuadValue.h" 40 #include "core/css/CSSQuadValue.h"
41 #include "core/css/CSSReflectValue.h" 41 #include "core/css/CSSReflectValue.h"
42 #include "core/css/CSSShadowValue.h" 42 #include "core/css/CSSShadowValue.h"
43 #include "core/css/CSSStringValueBase.h" 43 #include "core/css/CSSStringValues.h"
44 #include "core/css/CSSTimingFunctionValue.h" 44 #include "core/css/CSSTimingFunctionValue.h"
45 #include "core/css/CSSValueList.h" 45 #include "core/css/CSSValueList.h"
46 #include "core/css/CSSValuePair.h" 46 #include "core/css/CSSValuePair.h"
47 #include "core/css/CSSValuePool.h" 47 #include "core/css/CSSValuePool.h"
48 #include "core/layout/LayoutBlock.h" 48 #include "core/layout/LayoutBlock.h"
49 #include "core/layout/LayoutBox.h" 49 #include "core/layout/LayoutBox.h"
50 #include "core/layout/LayoutGrid.h" 50 #include "core/layout/LayoutGrid.h"
51 #include "core/layout/LayoutObject.h" 51 #include "core/layout/LayoutObject.h"
52 #include "core/style/ComputedStyle.h" 52 #include "core/style/ComputedStyle.h"
53 #include "core/style/ContentData.h" 53 #include "core/style/ContentData.h"
(...skipping 2641 matching lines...) Expand 10 before | Expand all | Expand 10 after
2695 case CSSPropertyAll: 2695 case CSSPropertyAll:
2696 return nullptr; 2696 return nullptr;
2697 default: 2697 default:
2698 break; 2698 break;
2699 } 2699 }
2700 ASSERT_NOT_REACHED(); 2700 ASSERT_NOT_REACHED();
2701 return nullptr; 2701 return nullptr;
2702 } 2702 }
2703 2703
2704 } 2704 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698