Skip to content

Commit fd23350

Browse files
author
Alex Mineer
committed
Revert "Unship frames() animation timing function"
This reverts commit f4fc014. Reason for revert: Causing build failure: ../../third_party/WebKit/Source/platform/animation/TimingFunction.h:219:12: error: 'FramesTimingFunctionEnabled' is not a member of 'blink::RuntimeEnabledFeatures' DCHECK(RuntimeEnabledFeatures::FramesTimingFunctionEnabled()); ^ https://uberchromegw.corp.google.com/i/official.android.continuous/builders/beta-arm/builds/8762/steps/Build%20libchrome.so/logs/stdio BUG=646265 Original change's description: > Unship frames() animation timing function > > This patch unships the frames() animation timing function due to > unresolved issues over the naming. > > No intent is required as the timing function has not reached the > stable channel of Chrome yet. > > Ongoing spec discussion: > w3c/csswg-drafts#1301 > > [email protected] > > (cherry picked from commit ffcd346) > > Bug: 646265 > Change-Id: Ice19051813a96eaa55229e46ef6630a75333b5b8 > Reviewed-on: https://chromium-review.googlesource.com/552218 > Commit-Queue: Alan Cutter <[email protected]> > Reviewed-by: Suzy Howlett <[email protected]> > Reviewed-by: Noel Gordon <[email protected]> > Cr-Original-Commit-Position: refs/heads/master@{#483584} > Reviewed-on: https://chromium-review.googlesource.com/574988 > Reviewed-by: Alan Cutter <[email protected]> > Cr-Commit-Position: refs/branch-heads/3112@{#628} > Cr-Branched-From: b6460e2-refs/heads/master@{#474897} [email protected],[email protected],[email protected] Change-Id: I85ff5ade3dbc64c82fda8f0271d617ab4f744f22 No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: 646265 Reviewed-on: https://chromium-review.googlesource.com/576350 Reviewed-by: Alex Mineer <[email protected]> Cr-Commit-Position: refs/branch-heads/3112@{#637} Cr-Branched-From: b6460e2-refs/heads/master@{#474897}
1 parent e770fc7 commit fd23350

File tree

6 files changed

+3
-39
lines changed

6 files changed

+3
-39
lines changed

third_party/WebKit/LayoutTests/virtual/stable/animations-unprefixed/frames-timing-function.html

-19
This file was deleted.

third_party/WebKit/Source/core/css/CSSTimingFunctionValue.h

+1-4
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
#define CSSTimingFunctionValue_h
2828

2929
#include "core/css/CSSValue.h"
30-
#include "platform/RuntimeEnabledFeatures.h"
3130
#include "platform/animation/TimingFunction.h"
3231
#include "platform/wtf/PassRefPtr.h"
3332

@@ -125,9 +124,7 @@ class CSSFramesTimingFunctionValue : public CSSValue {
125124

126125
private:
127126
CSSFramesTimingFunctionValue(int frames)
128-
: CSSValue(kFramesTimingFunctionClass), frames_(frames) {
129-
DCHECK(RuntimeEnabledFeatures::FramesTimingFunctionEnabled());
130-
}
127+
: CSSValue(kFramesTimingFunctionClass), frames_(frames) {}
131128

132129
int frames_;
133130
};

third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp

+1-3
Original file line numberDiff line numberDiff line change
@@ -451,10 +451,8 @@ static CSSValue* ConsumeAnimationTimingFunction(CSSParserTokenRange& range) {
451451
CSSValueID function = range.Peek().FunctionId();
452452
if (function == CSSValueSteps)
453453
return ConsumeSteps(range);
454-
if (RuntimeEnabledFeatures::FramesTimingFunctionEnabled() &&
455-
function == CSSValueFrames) {
454+
if (function == CSSValueFrames)
456455
return ConsumeFrames(range);
457-
}
458456
if (function == CSSValueCubicBezier)
459457
return ConsumeCubicBezier(range);
460458
return nullptr;

third_party/WebKit/Source/platform/RuntimeEnabledFeatures.json5

-4
Original file line numberDiff line numberDiff line change
@@ -453,10 +453,6 @@
453453
settable_from_internals: true,
454454
status: "experimental",
455455
},
456-
{
457-
name: "FramesTimingFunction",
458-
status: "experimental",
459-
},
460456
{
461457
name: "FrameTimingSupport",
462458
status: "experimental",

third_party/WebKit/Source/platform/animation/TimingFunction.h

+1-4
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727

2828
#include "cc/animation/timing_function.h"
2929
#include "platform/PlatformExport.h"
30-
#include "platform/RuntimeEnabledFeatures.h"
3130
#include "platform/wtf/Assertions.h"
3231
#include "platform/wtf/PassRefPtr.h"
3332
#include "platform/wtf/RefCounted.h"
@@ -215,9 +214,7 @@ class PLATFORM_EXPORT FramesTimingFunction final : public TimingFunction {
215214
private:
216215
FramesTimingFunction(int frames)
217216
: TimingFunction(Type::FRAMES),
218-
frames_(cc::FramesTimingFunction::Create(frames)) {
219-
DCHECK(RuntimeEnabledFeatures::FramesTimingFunctionEnabled());
220-
}
217+
frames_(cc::FramesTimingFunction::Create(frames)) {}
221218

222219
std::unique_ptr<cc::FramesTimingFunction> frames_;
223220
};

third_party/WebKit/Source/platform/animation/TimingFunctionTest.cpp

-5
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232

3333
#include <sstream>
3434
#include <string>
35-
#include "platform/RuntimeEnabledFeatures.h"
3635
#include "platform/wtf/text/WTFString.h"
3736
#include "testing/gmock/include/gmock/gmock.h"
3837
#include "testing/gtest/include/gtest/gtest.h"
@@ -52,10 +51,6 @@ namespace {
5251

5352
class TimingFunctionTest : public ::testing::Test {
5453
public:
55-
TimingFunctionTest() {
56-
RuntimeEnabledFeatures::SetFramesTimingFunctionEnabled(true);
57-
}
58-
5954
void NotEqualHelperLoop(
6055
Vector<std::pair<std::string, RefPtr<TimingFunction>>>& v) {
6156
for (size_t i = 0; i < v.size(); ++i) {

0 commit comments

Comments
 (0)