diff options
author | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-11 02:05:01 +0000 |
---|---|---|
committer | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-11 02:05:01 +0000 |
commit | a98411c384ac171834f4d27526a96abc1a44a8b2 (patch) | |
tree | f5f520f6764df854d0b193257585279cc2425ebf /chrome/service | |
parent | 639211895adb7db5164bfab8b607a9b51ce66f1a (diff) | |
download | chromium_src-a98411c384ac171834f4d27526a96abc1a44a8b2.zip chromium_src-a98411c384ac171834f4d27526a96abc1a44a8b2.tar.gz chromium_src-a98411c384ac171834f4d27526a96abc1a44a8b2.tar.bz2 |
Coverity: Initialize member variables.
CID=11644,14447,14816,15428
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/6670016
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@77763 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/service')
-rw-r--r-- | chrome/service/remoting/chromoting_host_manager.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/service/remoting/chromoting_host_manager.cc b/chrome/service/remoting/chromoting_host_manager.cc index b24eb4b..12b2adc 100644 --- a/chrome/service/remoting/chromoting_host_manager.cc +++ b/chrome/service/remoting/chromoting_host_manager.cc @@ -16,7 +16,8 @@ namespace remoting { ChromotingHostManager::ChromotingHostManager(Observer* observer) - : observer_(observer) { + : observer_(observer), + main_message_loop_(NULL) { } void ChromotingHostManager::Initialize( |