diff options
Diffstat (limited to 'chrome_frame/protocol_sink_wrap.cc')
-rw-r--r-- | chrome_frame/protocol_sink_wrap.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome_frame/protocol_sink_wrap.cc b/chrome_frame/protocol_sink_wrap.cc index 7f2e333..2a94b25 100644 --- a/chrome_frame/protocol_sink_wrap.cc +++ b/chrome_frame/protocol_sink_wrap.cc @@ -331,7 +331,7 @@ ProtData::ProtData(IInternetProtocol* protocol, DVLOG(1) << __FUNCTION__ << " " << this; // Add to map. - AutoLock lock(datamap_lock_); + base::AutoLock lock(datamap_lock_); DCHECK(datamap_.end() == datamap_.find(protocol_)); datamap_[protocol] = this; } @@ -571,7 +571,7 @@ void ProtData::SaveReferrer(IInternetProtocolSink* delegate) { scoped_refptr<ProtData> ProtData::DataFromProtocol( IInternetProtocol* protocol) { scoped_refptr<ProtData> instance; - AutoLock lock(datamap_lock_); + base::AutoLock lock(datamap_lock_); ProtocolDataMap::iterator it = datamap_.find(protocol); if (datamap_.end() != it) instance = it->second; @@ -581,7 +581,7 @@ scoped_refptr<ProtData> ProtData::DataFromProtocol( void ProtData::Invalidate() { if (protocol_) { // Remove from map. - AutoLock lock(datamap_lock_); + base::AutoLock lock(datamap_lock_); DCHECK(datamap_.end() != datamap_.find(protocol_)); datamap_.erase(protocol_); protocol_ = NULL; |