// 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 "net/third_party/quiche/overrides/quiche_platform_impl/quiche_mutex_impl.h" namespace quiche { void QuicheLockImpl::WriterLock() { … } void QuicheLockImpl::WriterUnlock() { … } void QuicheLockImpl::ReaderLock() { … } void QuicheLockImpl::ReaderUnlock() { … } } // namespace quiche