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

Unified Diff: content/renderer/shared_worker/embedded_shared_worker_stub.cc

Issue 657603007: Initialize app_cache_host_ of EmbeddedSharedWorkerStub. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: use nullptr Created 6 years, 2 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: content/renderer/shared_worker/embedded_shared_worker_stub.cc
diff --git a/content/renderer/shared_worker/embedded_shared_worker_stub.cc b/content/renderer/shared_worker/embedded_shared_worker_stub.cc
index eeb601c279667f4b475a932eb27d55373a5c70d5..fbfb7070de4d7b3a4148058f8fb3ae77ca45ded4 100644
--- a/content/renderer/shared_worker/embedded_shared_worker_stub.cc
+++ b/content/renderer/shared_worker/embedded_shared_worker_stub.cc
@@ -61,7 +61,11 @@ EmbeddedSharedWorkerStub::EmbeddedSharedWorkerStub(
blink::WebContentSecurityPolicyType security_policy_type,
bool pause_on_start,
int route_id)
- : route_id_(route_id), name_(name), runing_(false), url_(url) {
+ : route_id_(route_id),
+ name_(name),
+ runing_(false),
+ url_(url),
+ app_cache_host_(nullptr) {
RenderThreadImpl::current()->AddEmbeddedWorkerRoute(route_id_, this);
impl_ = blink::WebSharedWorker::create(this);
if (pause_on_start) {
« 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