Index: content/browser/service_worker/service_worker_client_navigation_utils.h |
diff --git a/content/browser/service_worker/service_worker_client_navigation_utils.h b/content/browser/service_worker/service_worker_client_navigation_utils.h |
deleted file mode 100644 |
index 26aee5550bdc714882ff7bfa50b5f837e16af1d2..0000000000000000000000000000000000000000 |
--- a/content/browser/service_worker/service_worker_client_navigation_utils.h |
+++ /dev/null |
@@ -1,49 +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. |
- |
-#ifndef CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_CLIENT_NAVIGATION_UTILS_H_ |
-#define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_CLIENT_NAVIGATION_UTILS_H_ |
- |
-#include <string> |
- |
-#include "base/callback.h" |
-#include "base/memory/weak_ptr.h" |
-#include "content/common/service_worker/service_worker_status_code.h" |
- |
-class GURL; |
- |
-namespace content { |
- |
-class ServiceWorkerContextCore; |
-struct ServiceWorkerClientInfo; |
- |
-namespace service_worker_client_navigation_utils { |
- |
-using NavigationCallback = |
- base::Callback<void(ServiceWorkerStatusCode status, |
- const std::string& client_uuid, |
- const ServiceWorkerClientInfo& client_info)>; |
- |
-// Opens a new window and navigates it to |url|. |callback| is called with the |
-// window's client information on completion. |
-void OpenWindow(const GURL& url, |
- const GURL& script_url, |
- int worker_process_id, |
- const base::WeakPtr<ServiceWorkerContextCore>& context, |
- const NavigationCallback& callback); |
- |
-// Navigates the client specified by |process_id| and |frame_id| to |url|. |
-// |callback| is called with the client information on completion. |
-void NavigateClient(const GURL& url, |
- const GURL& script_url, |
- int process_id, |
- int frame_id, |
- const base::WeakPtr<ServiceWorkerContextCore>& context, |
- const NavigationCallback& callback); |
- |
-} // namespace service_worker_client_navigation_utils |
- |
-} // namespace content |
- |
-#endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_CLIENT_NAVIGATION_UTILS_H_ |