chromium/cc/trees/property_animation_state.cc

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "cc/trees/property_animation_state.h"


namespace cc {

PropertyAnimationState::PropertyAnimationState() = default;

PropertyAnimationState::PropertyAnimationState(
    const PropertyAnimationState& rhs) = default;

PropertyAnimationState::~PropertyAnimationState() = default;

bool PropertyAnimationState::operator==(
    const PropertyAnimationState& other) const {}

bool PropertyAnimationState::operator!=(
    const PropertyAnimationState& other) const {}

PropertyAnimationState& PropertyAnimationState::operator|=(
    const PropertyAnimationState& other) {}

PropertyAnimationState& PropertyAnimationState::operator^=(
    const PropertyAnimationState& other) {}

PropertyAnimationState& PropertyAnimationState::operator&=(
    const PropertyAnimationState& other) {}

PropertyAnimationState operator^(const PropertyAnimationState& lhs,
                                 const PropertyAnimationState& rhs) {}

bool PropertyAnimationState::IsValid() const {}

void PropertyAnimationState::Clear() {}

}  // namespace cc