Commit c6ad5f1e authored by nhiroki@chromium.org's avatar nhiroki@chromium.org

ServiceWorker: Initialize member variable in ctor of ServiceWorkerDatabase

BUG=none
TEST=content_unittests --gtest_filter=ServiceWorkerDatabase.* (with valgrind)
TBR=michaeln@chromium.org

Review URL: https://codereview.chromium.org/253103003

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@266811 0039d316-1c4b-4281-b951-d872f2087c98
parent 66791aff
......@@ -155,7 +155,8 @@ ServiceWorkerDatabase::ServiceWorkerDatabase(const base::FilePath& path)
next_avail_resource_id_(0),
next_avail_version_id_(0),
is_disabled_(false),
was_corruption_detected_(false) {
was_corruption_detected_(false),
is_initialized_(false) {
}
ServiceWorkerDatabase::~ServiceWorkerDatabase() {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment