| Index: content/browser/debugger/devtools_http_protocol_handler.cc
|
| diff --git a/content/browser/debugger/devtools_http_protocol_handler.cc b/content/browser/debugger/devtools_http_protocol_handler.cc
|
| index 4d654d264176341899959d7bd0e7ed004e71d548..61b96e2c0e43faee1e497c3ac7f33b842514cff5 100644
|
| --- a/content/browser/debugger/devtools_http_protocol_handler.cc
|
| +++ b/content/browser/debugger/devtools_http_protocol_handler.cc
|
| @@ -136,11 +136,11 @@ class TabContentsIDHelper : public TabContentsObserver {
|
| base::LazyInstance<
|
| TabContentsIDHelper::IdToTabContentsMap,
|
| base::LeakyLazyInstanceTraits<TabContentsIDHelper::IdToTabContentsMap> >
|
| - TabContentsIDHelper::id_to_tabcontents_(base::LINKER_INITIALIZED);
|
| + TabContentsIDHelper::id_to_tabcontents_ = LAZY_INSTANCE_INITIALIZER;
|
| base::LazyInstance<
|
| TabContentsIDHelper::TabContentsToIdMap,
|
| base::LeakyLazyInstanceTraits<TabContentsIDHelper::TabContentsToIdMap> >
|
| - TabContentsIDHelper::tabcontents_to_id_(base::LINKER_INITIALIZED);
|
| + TabContentsIDHelper::tabcontents_to_id_ = LAZY_INSTANCE_INITIALIZER;
|
|
|
| } // namespace
|
|
|
|
|