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

Side by Side Diff: third_party/WebKit/Source/core/css/CSSValue.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) 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 #include "core/css/CSSImageSetValue.h" 43 #include "core/css/CSSImageSetValue.h"
44 #include "core/css/CSSImageValue.h" 44 #include "core/css/CSSImageValue.h"
45 #include "core/css/CSSInheritedValue.h" 45 #include "core/css/CSSInheritedValue.h"
46 #include "core/css/CSSInitialValue.h" 46 #include "core/css/CSSInitialValue.h"
47 #include "core/css/CSSPathValue.h" 47 #include "core/css/CSSPathValue.h"
48 #include "core/css/CSSPrimitiveValue.h" 48 #include "core/css/CSSPrimitiveValue.h"
49 #include "core/css/CSSQuadValue.h" 49 #include "core/css/CSSQuadValue.h"
50 #include "core/css/CSSReflectValue.h" 50 #include "core/css/CSSReflectValue.h"
51 #include "core/css/CSSSVGDocumentValue.h" 51 #include "core/css/CSSSVGDocumentValue.h"
52 #include "core/css/CSSShadowValue.h" 52 #include "core/css/CSSShadowValue.h"
53 #include "core/css/CSSStringValueBase.h" 53 #include "core/css/CSSStringValues.h"
54 #include "core/css/CSSTimingFunctionValue.h" 54 #include "core/css/CSSTimingFunctionValue.h"
55 #include "core/css/CSSUnicodeRangeValue.h" 55 #include "core/css/CSSUnicodeRangeValue.h"
56 #include "core/css/CSSUnsetValue.h" 56 #include "core/css/CSSUnsetValue.h"
57 #include "core/css/CSSValueList.h" 57 #include "core/css/CSSValueList.h"
58 #include "core/css/CSSValuePair.h" 58 #include "core/css/CSSValuePair.h"
59 59
60 namespace blink { 60 namespace blink {
61 61
62 struct SameSizeAsCSSValue : public RefCountedWillBeGarbageCollectedFinalized<Sam eSizeAsCSSValue> { 62 struct SameSizeAsCSSValue : public RefCountedWillBeGarbageCollectedFinalized<Sam eSizeAsCSSValue> {
63 uint32_t bitfields; 63 uint32_t bitfields;
(...skipping 491 matching lines...) Expand 10 before | Expand all | Expand 10 after
555 toCSSSVGDocumentValue(this)->traceAfterDispatch(visitor); 555 toCSSSVGDocumentValue(this)->traceAfterDispatch(visitor);
556 return; 556 return;
557 case CSSContentDistributionClass: 557 case CSSContentDistributionClass:
558 toCSSContentDistributionValue(this)->traceAfterDispatch(visitor); 558 toCSSContentDistributionValue(this)->traceAfterDispatch(visitor);
559 return; 559 return;
560 } 560 }
561 ASSERT_NOT_REACHED(); 561 ASSERT_NOT_REACHED();
562 } 562 }
563 563
564 } 564 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698