| Index: base/message_loop.cc
|
| diff --git a/base/message_loop.cc b/base/message_loop.cc
|
| index c04fa8b19b518499685a4bd2d232545796be20a0..f4db3238c51215369ddba24983668501ca114fd3 100644
|
| --- a/base/message_loop.cc
|
| +++ b/base/message_loop.cc
|
| @@ -42,8 +42,8 @@ namespace {
|
|
|
| // A lazily created thread local storage for quick access to a thread's message
|
| // loop, if one exists. This should be safe and free of static constructors.
|
| -base::LazyInstance<base::ThreadLocalPointer<MessageLoop> > lazy_tls_ptr(
|
| - base::LINKER_INITIALIZED);
|
| +base::LazyInstance<base::ThreadLocalPointer<MessageLoop> > lazy_tls_ptr =
|
| + LAZY_INSTANCE_INITIALIZER;
|
|
|
| // Logical events for Histogram profiling. Run with -message-loop-histogrammer
|
| // to get an accounting of messages and actions taken on each thread.
|
|
|