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

Unified Diff: content/browser/service_worker/service_worker_navigation_handle.cc

Issue 2045383002: PlzNavigate: detect when a ServiceWorker is present (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments Created 4 years, 6 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
Index: content/browser/service_worker/service_worker_navigation_handle.cc
diff --git a/content/browser/service_worker/service_worker_navigation_handle.cc b/content/browser/service_worker/service_worker_navigation_handle.cc
deleted file mode 100644
index 2bc87a22fb5210ea2ff324e26f2f196a8d68a746..0000000000000000000000000000000000000000
--- a/content/browser/service_worker/service_worker_navigation_handle.cc
+++ /dev/null
@@ -1,35 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "content/browser/service_worker/service_worker_navigation_handle.h"
-
-#include "base/bind.h"
-#include "content/browser/service_worker/service_worker_navigation_handle_core.h"
-#include "content/common/service_worker/service_worker_types.h"
-#include "content/public/browser/browser_thread.h"
-
-namespace content {
-
-ServiceWorkerNavigationHandle::ServiceWorkerNavigationHandle(
- ServiceWorkerContextWrapper* context_wrapper)
- : service_worker_provider_host_id_(kInvalidServiceWorkerProviderId),
- weak_factory_(this) {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
- core_ = new ServiceWorkerNavigationHandleCore(weak_factory_.GetWeakPtr(),
- context_wrapper);
-}
-
-ServiceWorkerNavigationHandle::~ServiceWorkerNavigationHandle() {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
- // Delete the ServiceWorkerNavigationHandleCore on the IO thread.
- BrowserThread::DeleteSoon(BrowserThread::IO, FROM_HERE, core_);
-}
-
-void ServiceWorkerNavigationHandle::DidCreateServiceWorkerProviderHost(
- int service_worker_provider_host_id) {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
- service_worker_provider_host_id_ = service_worker_provider_host_id;
-}
-
-} // namespace content

Powered by Google App Engine
This is Rietveld 408576698