Index: net/spdy/spdy_settings_storage.cc |
diff --git a/net/spdy/spdy_settings_storage.cc b/net/spdy/spdy_settings_storage.cc |
index 9d79c56f078224473c54b5f189d5b9a582af6d53..f7142498173fde41b30cd8ca4fad126a64b8b0fa 100644 |
--- a/net/spdy/spdy_settings_storage.cc |
+++ b/net/spdy/spdy_settings_storage.cc |
@@ -18,7 +18,7 @@ const spdy::SpdySettings& SpdySettingsStorage::Get( |
const HostPortPair& host_port_pair) const { |
SettingsMap::const_iterator it = settings_map_.find(host_port_pair); |
if (it == settings_map_.end()) { |
- static const spdy::SpdySettings kEmpty; |
+ CR_DEFINE_STATIC_LOCAL(spdy::SpdySettings, kEmpty, ()); |
return kEmpty; |
} |
return it->second; |