Commit 3e26604a authored by mek's avatar mek Committed by Commit bot

Fix uninitialized memory introduced in https://codereview.chromium.org/623823002/

BUG=383125
TBR=michaeln

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

Cr-Commit-Position: refs/heads/master@{#301059}
parent fe41b80e
...@@ -73,6 +73,8 @@ ServiceWorkerObjectInfo::ServiceWorkerObjectInfo() ...@@ -73,6 +73,8 @@ ServiceWorkerObjectInfo::ServiceWorkerObjectInfo()
state(blink::WebServiceWorkerStateUnknown) {} state(blink::WebServiceWorkerStateUnknown) {}
ServiceWorkerRegistrationObjectInfo::ServiceWorkerRegistrationObjectInfo() ServiceWorkerRegistrationObjectInfo::ServiceWorkerRegistrationObjectInfo()
: handle_id(kInvalidServiceWorkerRegistrationHandleId) {} : handle_id(kInvalidServiceWorkerRegistrationHandleId),
registration_id(kInvalidServiceWorkerRegistrationId) {
}
} // namespace content } // namespace content
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