From b689c79de1498dfd8b4fdaadb9bf43013a8c663c Mon Sep 17 00:00:00 2001 From: Wes Kocher Date: Sat, 8 Apr 2017 23:52:25 -0700 Subject: [PATCH] Backed out changeset 17650db2f478 (bug 1354775) for stylo bustage at developer's request a=backout --- layout/style/ServoBindings.cpp | 7 ------- layout/style/ServoBindings.h | 3 --- 2 files changed, 10 deletions(-) diff --git a/layout/style/ServoBindings.cpp b/layout/style/ServoBindings.cpp index 0c05ccafbe22..ac68a65d12cf 100644 --- a/layout/style/ServoBindings.cpp +++ b/layout/style/ServoBindings.cpp @@ -1109,13 +1109,6 @@ Gecko_ClearPODTArray(void* aArray, size_t aElementSize, size_t aElementAlign) aElementSize, aElementAlign); } -void -Gecko_CopyStyleGridTemplateValues(nsStyleGridTemplate* aGridTemplate, - const nsStyleGridTemplate* aOther) -{ - *aGridTemplate = *aOther; -} - void Gecko_ClearAndResizeStyleContents(nsStyleContent* aContent, uint32_t aHowMany) { diff --git a/layout/style/ServoBindings.h b/layout/style/ServoBindings.h index 168dcd490d44..cda7a076839c 100644 --- a/layout/style/ServoBindings.h +++ b/layout/style/ServoBindings.h @@ -284,9 +284,6 @@ void Gecko_EnsureTArrayCapacity(void* array, size_t capacity, size_t elem_size); // otherwise. This is ensured with rust traits for the relevant structs. void Gecko_ClearPODTArray(void* array, size_t elem_size, size_t elem_align); -void Gecko_CopyStyleGridTemplateValues(nsStyleGridTemplate* grid_template, - const nsStyleGridTemplate* other); - // Clear the mContents, mCounterIncrements, or mCounterResets field in nsStyleContent. This is // needed to run the destructors, otherwise we'd leak the images, strings, and whatnot. void Gecko_ClearAndResizeStyleContents(nsStyleContent* content,