| Index: net/quic/platform/api/quic_mutex.cc | 
| diff --git a/net/quic/platform/api/quic_mutex.cc b/net/quic/platform/api/quic_mutex.cc | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..f0c8f0997ae4e99a7fc034adec894fb2ac489247 | 
| --- /dev/null | 
| +++ b/net/quic/platform/api/quic_mutex.cc | 
| @@ -0,0 +1,45 @@ | 
| +// Copyright (c) 2016 The Chromium Authors. All rights reserved. | 
| +// Use of this source code is governed by a BSD-style license that can be | 
| +// found in the LICENSE file. | 
| + | 
| +#include "net/quic/platform/api/quic_mutex.h" | 
| + | 
| +namespace net { | 
| + | 
| +void QuicMutex::WriterLock() { | 
| +  impl_.WriterLock(); | 
| +} | 
| + | 
| +void QuicMutex::WriterUnlock() { | 
| +  impl_.WriterUnlock(); | 
| +} | 
| + | 
| +void QuicMutex::ReaderLock() { | 
| +  impl_.ReaderLock(); | 
| +} | 
| + | 
| +void QuicMutex::ReaderUnlock() { | 
| +  impl_.ReaderUnlock(); | 
| +} | 
| + | 
| +void QuicMutex::AssertReaderHeld() const { | 
| +  impl_.AssertReaderHeld(); | 
| +} | 
| + | 
| +QuicReaderMutexLock::QuicReaderMutexLock(QuicMutex* lock) : lock_(lock) { | 
| +  lock->ReaderLock(); | 
| +} | 
| + | 
| +QuicReaderMutexLock::~QuicReaderMutexLock() { | 
| +  lock_->ReaderUnlock(); | 
| +} | 
| + | 
| +QuicWriterMutexLock::QuicWriterMutexLock(QuicMutex* lock) : lock_(lock) { | 
| +  lock->WriterLock(); | 
| +} | 
| + | 
| +QuicWriterMutexLock::~QuicWriterMutexLock() { | 
| +  lock_->WriterUnlock(); | 
| +} | 
| + | 
| +}  // namespace net | 
|  |