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

Unified Diff: content/common/service_worker/service_worker_types_traits.cc

Issue 2638313002: Manage ServiceWorkerDispatcherHost in ServiceWorkerContextCore (Closed)
Patch Set: Rebase Created 3 years, 10 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 | « content/common/service_worker/service_worker_types_traits.h ('k') | content/common/typemaps.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/service_worker/service_worker_types_traits.cc
diff --git a/content/common/service_worker/service_worker_types_traits.cc b/content/common/service_worker/service_worker_types_traits.cc
deleted file mode 100644
index 1126308a1b7905869ca4232676589f536b07775f..0000000000000000000000000000000000000000
--- a/content/common/service_worker/service_worker_types_traits.cc
+++ /dev/null
@@ -1,24 +0,0 @@
-// Copyright 2016 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/common/service_worker/service_worker_types_traits.h"
-
-namespace mojo {
-
-content::mojom::ServiceWorkerProviderType EnumTraits<
- content::mojom::ServiceWorkerProviderType,
- content::ServiceWorkerProviderType>::ToMojom(
- content::ServiceWorkerProviderType input) {
- return static_cast<content::mojom::ServiceWorkerProviderType>(input);
-}
-
-bool EnumTraits<content::mojom::ServiceWorkerProviderType,
- content::ServiceWorkerProviderType>::FromMojom(
- content::mojom::ServiceWorkerProviderType input,
- content::ServiceWorkerProviderType* out) {
- *out = static_cast<content::ServiceWorkerProviderType>(input);
- return true;
-}
-
-} // namespace mojo
« no previous file with comments | « content/common/service_worker/service_worker_types_traits.h ('k') | content/common/typemaps.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698