summaryrefslogtreecommitdiffstats
path: root/chrome_frame/protocol_sink_wrap.h
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-21 05:30:19 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-21 05:30:19 +0000
commit68c3403ef50205253a80cad76b3e6f39f0c92bdc (patch)
tree0f0b685d9f920cdade9a0fb69fd7f7d1ededf5cb /chrome_frame/protocol_sink_wrap.h
parentf355c56028d0404855185541c7ba8568c22ed4a3 (diff)
downloadchromium_src-68c3403ef50205253a80cad76b3e6f39f0c92bdc.zip
chromium_src-68c3403ef50205253a80cad76b3e6f39f0c92bdc.tar.gz
chromium_src-68c3403ef50205253a80cad76b3e6f39f0c92bdc.tar.bz2
Add missing base::lock usage.
TEST=it compiles BUG=none Review URL: http://codereview.chromium.org/6336010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72108 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/protocol_sink_wrap.h')
-rw-r--r--chrome_frame/protocol_sink_wrap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome_frame/protocol_sink_wrap.h b/chrome_frame/protocol_sink_wrap.h
index 0f48429..eccd6a5 100644
--- a/chrome_frame/protocol_sink_wrap.h
+++ b/chrome_frame/protocol_sink_wrap.h
@@ -133,7 +133,7 @@ class ProtData : public base::RefCounted<ProtData> {
private:
typedef std::map<IInternetProtocol*, ProtData*> ProtocolDataMap;
static ProtocolDataMap datamap_;
- static Lock datamap_lock_;
+ static base::Lock datamap_lock_;
// Url we are retrieving. Used for RendererTypeForUrl() only.
std::wstring url_;