// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "net/disk_cache/blockfile/file_lock.h" #include <atomic> #include "build/build_config.h" namespace { void Barrier() { … } } // namespace namespace disk_cache { FileLock::FileLock(BlockFileHeader* header) { … } FileLock::~FileLock() { … } void FileLock::Lock() { … } void FileLock::Unlock() { … } } // namespace disk_cache