summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfinnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-22 18:09:34 +0000
committerfinnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-22 18:09:34 +0000
commit8426fb8f8564001e6687957718f23bd076b4e509 (patch)
tree4e1b1d812e5e6d66623615693633052989f5fff7
parent644090c5f177f71e739b51cbab579a4c62fd6da5 (diff)
downloadchromium_src-8426fb8f8564001e6687957718f23bd076b4e509.zip
chromium_src-8426fb8f8564001e6687957718f23bd076b4e509.tar.gz
chromium_src-8426fb8f8564001e6687957718f23bd076b4e509.tar.bz2
Coverity 9291: Ininitialize member in HighResolutionTimerManager on Posix.
BUG=None TEST=None Review URL: http://codereview.chromium.org/3039019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53357 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--app/hi_res_timer_manager_posix.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/hi_res_timer_manager_posix.cc b/app/hi_res_timer_manager_posix.cc
index f0562fd..1398449 100644
--- a/app/hi_res_timer_manager_posix.cc
+++ b/app/hi_res_timer_manager_posix.cc
@@ -6,7 +6,8 @@
// On POSIX we don't need to do anything special with the system timer.
-HighResolutionTimerManager::HighResolutionTimerManager() {
+HighResolutionTimerManager::HighResolutionTimerManager()
+ : hi_res_clock_used_(false) {
}
HighResolutionTimerManager::~HighResolutionTimerManager() {