Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1282)

Unified Diff: Source/platform/exported/WebServiceWorkerResponse.cpp

Issue 575153002: Set status to 0 in the constructor of WebServiceWorkerResponsePrivate. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/exported/WebServiceWorkerResponse.cpp
diff --git a/Source/platform/exported/WebServiceWorkerResponse.cpp b/Source/platform/exported/WebServiceWorkerResponse.cpp
index f8232e15f93e48ac23ec3715fd623017ef3db0c4..9107eff40973ee22debee651c2359f64ffd872bb 100644
--- a/Source/platform/exported/WebServiceWorkerResponse.cpp
+++ b/Source/platform/exported/WebServiceWorkerResponse.cpp
@@ -13,6 +13,7 @@ namespace blink {
class WebServiceWorkerResponsePrivate : public RefCounted<WebServiceWorkerResponsePrivate> {
public:
+ WebServiceWorkerResponsePrivate() : status(0) { }
WebURL url;
unsigned short status;
WebString statusText;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698