chromium/components/viz/test/begin_frame_args_test.cc

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

#include "components/viz/test/begin_frame_args_test.h"

#include <stdint.h>
#include <ostream>

#include "base/time/tick_clock.h"
#include "base/time/time.h"
#include "components/viz/common/frame_sinks/begin_frame_args.h"

namespace viz {

BeginFrameArgs CreateBeginFrameArgsForTesting(
    BeginFrameArgs::CreationLocation location,
    uint64_t source_id,
    uint64_t sequence_number) {}

BeginFrameArgs CreateBeginFrameArgsForTesting(
    BeginFrameArgs::CreationLocation location,
    uint64_t source_id,
    uint64_t sequence_number,
    base::TimeTicks frame_time) {}

BeginFrameArgs CreateBeginFrameArgsForTesting(
    BeginFrameArgs::CreationLocation location,
    uint64_t source_id,
    uint64_t sequence_number,
    int64_t frame_time,
    int64_t deadline,
    int64_t interval) {}

BeginFrameArgs CreateBeginFrameArgsForTesting(
    BeginFrameArgs::CreationLocation location,
    uint64_t source_id,
    uint64_t sequence_number,
    int64_t frame_time,
    int64_t deadline,
    int64_t interval,
    BeginFrameArgs::BeginFrameArgsType type) {}

BeginFrameArgs CreateBeginFrameArgsForTesting(
    BeginFrameArgs::CreationLocation location,
    uint64_t source_id,
    uint64_t sequence_number,
    const base::TickClock* now_src) {}

bool operator==(const BeginFrameArgs& lhs, const BeginFrameArgs& rhs) {}

::std::ostream& operator<<(::std::ostream& os, const BeginFrameArgs& args) {}

void PrintTo(const BeginFrameArgs& args, ::std::ostream* os) {}

bool operator==(const BeginFrameAck& lhs, const BeginFrameAck& rhs) {}

::std::ostream& operator<<(::std::ostream& os, const BeginFrameAck& args) {}

void PrintTo(const BeginFrameAck& ack, ::std::ostream* os) {}

}  // namespace viz