| Index: content/browser/worker_host/worker_message_filter.cc
|
| diff --git a/content/browser/worker_host/worker_message_filter.cc b/content/browser/worker_host/worker_message_filter.cc
|
| index 378b48d109a0f0feb31048088e8a8f1b2e85006a..ece0944fc3df181be9ec876d489b6ce469b599b1 100644
|
| --- a/content/browser/worker_host/worker_message_filter.cc
|
| +++ b/content/browser/worker_host/worker_message_filter.cc
|
| @@ -91,10 +91,10 @@ void WorkerMessageFilter::OnLookupSharedWorker(
|
| bool* url_error) {
|
| *route_id = next_routing_id_->Run();
|
|
|
| - bool off_the_record = static_cast<ChromeURLRequestContext*>(
|
| + bool incognito = static_cast<ChromeURLRequestContext*>(
|
| request_context_->GetURLRequestContext())->is_off_the_record();
|
| WorkerService::GetInstance()->LookupSharedWorker(
|
| - params, *route_id, this, off_the_record, exists, url_error);
|
| + params, *route_id, this, incognito, exists, url_error);
|
| }
|
|
|
| void WorkerMessageFilter::OnCancelCreateDedicatedWorker(int route_id) {
|
|
|