summaryrefslogtreecommitdiffstats
path: root/chrome/browser/child_process_launcher.cc
diff options
context:
space:
mode:
authorjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-13 19:56:00 +0000
committerjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-13 19:56:00 +0000
commit18cbea32c5386b83f0c182c599700ff2ea217b1b (patch)
treee46fac3975daaa9d0478b380e354f3ce577d9c31 /chrome/browser/child_process_launcher.cc
parent4ead6f77ebfb353d98bc87df656a2234102e8ace (diff)
downloadchromium_src-18cbea32c5386b83f0c182c599700ff2ea217b1b.zip
chromium_src-18cbea32c5386b83f0c182c599700ff2ea217b1b.tar.gz
chromium_src-18cbea32c5386b83f0c182c599700ff2ea217b1b.tar.bz2
Coverity: Initialize member variables.
CID=7636,8292,8295,8766,8788,9312,9444,10754,12632,12689 BUG=none TEST=none Review URL: http://codereview.chromium.org/3764001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62439 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/child_process_launcher.cc')
-rw-r--r--chrome/browser/child_process_launcher.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/browser/child_process_launcher.cc b/chrome/browser/child_process_launcher.cc
index efef933..f215084 100644
--- a/chrome/browser/child_process_launcher.cc
+++ b/chrome/browser/child_process_launcher.cc
@@ -42,7 +42,9 @@ class ChildProcessLauncher::Context
: public base::RefCountedThreadSafe<ChildProcessLauncher::Context> {
public:
Context()
- : starting_(true)
+ : client_(NULL),
+ client_thread_id_(BrowserThread::UI),
+ starting_(true)
#if defined(OS_LINUX)
, zygote_(false)
#endif