| Index: content/browser/debugger/render_view_devtools_agent_host.cc
|
| diff --git a/content/browser/debugger/render_view_devtools_agent_host.cc b/content/browser/debugger/render_view_devtools_agent_host.cc
|
| index 943930fceae6b8f5a36430bb9d3a4db105e5b281..54e4c796bf235568cde0b974db5a4d0c985a4166 100644
|
| --- a/content/browser/debugger/render_view_devtools_agent_host.cc
|
| +++ b/content/browser/debugger/render_view_devtools_agent_host.cc
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| @@ -23,9 +23,7 @@ namespace content {
|
| typedef std::map<RenderViewHost*, RenderViewDevToolsAgentHost*> Instances;
|
|
|
| namespace {
|
| -base::LazyInstance<Instances,
|
| - base::LeakyLazyInstanceTraits<Instances> >
|
| - g_instances = LAZY_INSTANCE_INITIALIZER;
|
| +base::LazyInstance<Instances>::Leaky g_instances = LAZY_INSTANCE_INITIALIZER;
|
| } // namespace
|
|
|
| // static
|
| @@ -142,4 +140,3 @@ void RenderViewDevToolsAgentHost::OnClearBrowserCookies() {
|
| }
|
|
|
| } // namespace content
|
| -
|
|
|