summaryrefslogtreecommitdiffstats
path: root/content/test
diff options
context:
space:
mode:
authorjochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-12-11 13:52:01 +0000
committerjochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-12-11 13:52:01 +0000
commitd126412b05adbbc1e24895603cf9fa29c19ad8ec (patch)
tree0e958b99df49b7e3a5860461df42d2be0fde3b85 /content/test
parent43c7e6956d704939b9084133c82f190d5b78f111 (diff)
downloadchromium_src-d126412b05adbbc1e24895603cf9fa29c19ad8ec.zip
chromium_src-d126412b05adbbc1e24895603cf9fa29c19ad8ec.tar.gz
chromium_src-d126412b05adbbc1e24895603cf9fa29c19ad8ec.tar.bz2
Add missing lazy instance initializer
BUG=none R=marja@chromium.org Review URL: https://codereview.chromium.org/11536002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@172318 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/test')
-rw-r--r--content/test/layouttest_support.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/test/layouttest_support.cc b/content/test/layouttest_support.cc
index 2cc383c..1f6f23e 100644
--- a/content/test/layouttest_support.cc
+++ b/content/test/layouttest_support.cc
@@ -17,7 +17,7 @@ namespace content {
namespace {
base::LazyInstance<base::Callback<void(RenderView*, WebTestProxyBase*)> >::Leaky
- g_callback;
+ g_callback = LAZY_INSTANCE_INITIALIZER;
RenderViewImpl* CreateWebTestProxy(RenderViewImplParams* params) {
typedef WebTestProxy<RenderViewImpl, RenderViewImplParams*> ProxyType;