summaryrefslogtreecommitdiffstats
path: root/content
diff options
context:
space:
mode:
authorjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-07 17:26:30 +0000
committerjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-07 17:26:30 +0000
commit91550a61732db84183fa3d026e915c75e1505086 (patch)
tree970ffc634763e2ee3a3b6057ed194b69f7280cd3 /content
parentef62f59def69e470390a6e15ae874f398a9f3186 (diff)
downloadchromium_src-91550a61732db84183fa3d026e915c75e1505086.zip
chromium_src-91550a61732db84183fa3d026e915c75e1505086.tar.gz
chromium_src-91550a61732db84183fa3d026e915c75e1505086.tar.bz2
Coverity: Initialize member variables.
CID_COUNT=2 CID=104157,104158 BUG=none TEST=none R=groby TBR=jam@chromium.org,brettw@chromium.org Review URL: https://chromiumcodereview.appspot.com/10534043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@141026 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content')
-rw-r--r--content/app/content_main_runner.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/content/app/content_main_runner.cc b/content/app/content_main_runner.cc
index d765965..6f607fe 100644
--- a/content/app/content_main_runner.cc
+++ b/content/app/content_main_runner.cc
@@ -384,7 +384,8 @@ class ContentMainRunnerImpl : public ContentMainRunner {
ContentMainRunnerImpl()
: is_initialized_(false),
is_shutdown_(false),
- completed_basic_startup_(false) {
+ completed_basic_startup_(false),
+ delegate_(NULL) {
}
~ContentMainRunnerImpl() {