diff options
author | groby@chromium.org <groby@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-28 03:14:28 +0000 |
---|---|---|
committer | groby@chromium.org <groby@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-28 03:14:28 +0000 |
commit | ee00488b9cee9309306c316806f25ce190680609 (patch) | |
tree | 974c05166a3674984789fe9b2ef872d3299f768f | |
parent | 78b01a77b5a88a3277793df07a0c8eef5204183f (diff) | |
download | chromium_src-ee00488b9cee9309306c316806f25ce190680609.zip chromium_src-ee00488b9cee9309306c316806f25ce190680609.tar.gz chromium_src-ee00488b9cee9309306c316806f25ce190680609.tar.bz2 |
Added missing member initialization
BUG=
TEST=
Review URL: http://codereview.chromium.org/9295008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119575 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | content/test/test_url_fetcher_factory.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/content/test/test_url_fetcher_factory.cc b/content/test/test_url_fetcher_factory.cc index 5a51c59..f37fda3 100644 --- a/content/test/test_url_fetcher_factory.cc +++ b/content/test/test_url_fetcher_factory.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. @@ -271,7 +271,8 @@ class FakeURLFetcher : public TestURLFetcher { }; FakeURLFetcherFactory::FakeURLFetcherFactory() - : ScopedURLFetcherFactory(ALLOW_THIS_IN_INITIALIZER_LIST(this)) { + : ScopedURLFetcherFactory(ALLOW_THIS_IN_INITIALIZER_LIST(this)), + default_factory_(NULL) { } FakeURLFetcherFactory::FakeURLFetcherFactory( |