| Index: content/common/np_channel_base.cc
|
| diff --git a/content/common/np_channel_base.cc b/content/common/np_channel_base.cc
|
| index 62ea1e2599bccced5b85f0ce96471ab878f2bd3b..7b721193479d70e96072e4b16f205f4719a05d7c 100644
|
| --- a/content/common/np_channel_base.cc
|
| +++ b/content/common/np_channel_base.cc
|
| @@ -19,12 +19,12 @@
|
| typedef base::hash_map<std::string, scoped_refptr<NPChannelBase> > ChannelMap;
|
| static base::LazyInstance<ChannelMap,
|
| base::LeakyLazyInstanceTraits<ChannelMap> >
|
| - g_channels(base::LINKER_INITIALIZED);
|
| + g_channels = LAZY_INSTANCE_INITIALIZER;
|
|
|
| typedef std::stack<scoped_refptr<NPChannelBase> > NPChannelRefStack;
|
| static base::LazyInstance<NPChannelRefStack,
|
| base::LeakyLazyInstanceTraits<NPChannelRefStack> >
|
| - g_lazy_channel_stack(base::LINKER_INITIALIZED);
|
| + g_lazy_channel_stack = LAZY_INSTANCE_INITIALIZER;
|
|
|
| static int next_pipe_id = 0;
|
|
|
|
|