Index: content/common/service_worker_types.cc |
diff --git a/content/common/service_worker_types.cc b/content/common/service_worker_types.cc |
deleted file mode 100644 |
index c4567520f32b714041bd7df28830a21d721e656d..0000000000000000000000000000000000000000 |
--- a/content/common/service_worker_types.cc |
+++ /dev/null |
@@ -1,22 +0,0 @@ |
-// Copyright 2013 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_types.h" |
- |
-namespace content { |
- |
-ServiceWorkerFetchRequest::ServiceWorkerFetchRequest() {} |
- |
-ServiceWorkerFetchRequest::ServiceWorkerFetchRequest( |
- const GURL& url, |
- const std::string& method, |
- const std::map<std::string, std::string>& headers) |
- : url(url), |
- method(method), |
- headers(headers) { |
-} |
- |
-ServiceWorkerFetchRequest::~ServiceWorkerFetchRequest() {} |
- |
-} // namespace content |