chromium/mojo/public/cpp/system/buffer.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 "mojo/public/cpp/system/buffer.h"

namespace mojo {

// static
ScopedSharedBufferHandle SharedBufferHandle::Create(uint64_t num_bytes) {}

ScopedSharedBufferHandle SharedBufferHandle::Clone(
    SharedBufferHandle::AccessMode access_mode) const {}

ScopedSharedBufferMapping SharedBufferHandle::Map(uint64_t size) const {}

ScopedSharedBufferMapping SharedBufferHandle::MapAtOffset(
    uint64_t size,
    uint64_t offset) const {}

uint64_t SharedBufferHandle::GetSize() const {}

}  // namespace mojo