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

Unified Diff: content/browser/service_worker/service_worker_client_navigation_utils.h

Issue 1535983002: ServiceWorker: Factor out functions to collect client information from ServiceWorkerVersion (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 12 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 | content/browser/service_worker/service_worker_client_navigation_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_
« no previous file with comments | « no previous file | content/browser/service_worker/service_worker_client_navigation_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698