#include "base/containers/intrusive_heap.h"
#include "base/check.h"
#include "base/memory/ptr_util.h"
namespace base {
HeapHandle HeapHandle::Invalid() {
return HeapHandle();
}
InternalHeapHandleStorage::InternalHeapHandleStorage()
: handle_(new HeapHandle()) {}
InternalHeapHandleStorage::InternalHeapHandleStorage(
InternalHeapHandleStorage&& other) noexcept
: handle_(std::move(other.handle_)) {
DCHECK(intrusive_heap::IsInvalid(other.handle_));
}
InternalHeapHandleStorage::~InternalHeapHandleStorage() = default;
InternalHeapHandleStorage& InternalHeapHandleStorage::operator=(
InternalHeapHandleStorage&& other) noexcept {
handle_ = std::move(other.handle_);
DCHECK(intrusive_heap::IsInvalid(other.handle_));
return *this;
}
void InternalHeapHandleStorage::swap(
InternalHeapHandleStorage& other) noexcept {
std::swap(handle_, other.handle_);
}
}