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

Unified Diff: Source/core/css/CSSValueObject.h

Issue 1226273002: CSSValue Immediates: Make CSSPrimitiveValue store a tagged pointer (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@cssvalue_patch_2_attempt_2
Patch Set: Rebase Created 5 years, 5 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/CSSValue.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSValueObject.h
diff --git a/Source/core/css/CSSValueObject.h b/Source/core/css/CSSValueObject.h
index 535e95bc89ec3ea52e5ea787ac5a3b3efaa8ead2..ab4ab5039cd4381f3d763718746f43d4f878e28e 100644
--- a/Source/core/css/CSSValueObject.h
+++ b/Source/core/css/CSSValueObject.h
@@ -41,7 +41,7 @@ public:
static void* allocateObject(size_t size, bool isEager)
{
ThreadState* state = ThreadStateFor<ThreadingTrait<CSSValueObject>::Affinity>::state();
- return Heap::allocateOnHeapIndex(state, size, isEager ? ThreadState::EagerSweepHeapIndex : ThreadState::CSSValueHeapIndex, GCInfoTrait<CSSValueObject>::index());
+ return Heap::allocateOnHeapIndex(state, size, isEager ? ThreadState::EagerSweepHeapIndex : ThreadState::CSSValueObjectHeapIndex, GCInfoTrait<CSSValueObject>::index());
}
#else
// Override RefCounted's deref() to ensure operator delete is called on
« no previous file with comments | « Source/core/css/CSSValue.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698