summaryrefslogtreecommitdiffstats
path: root/content/common/np_channel_base.cc
diff options
context:
space:
mode:
Diffstat (limited to 'content/common/np_channel_base.cc')
-rw-r--r--content/common/np_channel_base.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/content/common/np_channel_base.cc b/content/common/np_channel_base.cc
index 62ea1e2..7b72119 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;