chromium/cc/paint/transfer_cache_serialize_helper.cc

// Copyright 2017 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/paint/transfer_cache_serialize_helper.h"

#include <utility>

#include "base/check_op.h"

namespace cc {

TransferCacheSerializeHelper::TransferCacheSerializeHelper() = default;
TransferCacheSerializeHelper::~TransferCacheSerializeHelper() = default;

bool TransferCacheSerializeHelper::LockEntry(TransferCacheEntryType type,
                                             uint32_t id) {}

uint32_t TransferCacheSerializeHelper::CreateEntry(
    const ClientTransferCacheEntry& entry,
    uint8_t* memory) {}

void TransferCacheSerializeHelper::FlushEntries() {}

void TransferCacheSerializeHelper::AssertLocked(TransferCacheEntryType type,
                                                uint32_t id) {}

}  // namespace cc