| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/browser/service_worker/service_worker_version.h" | 5 #include "content/browser/service_worker/service_worker_version.h" |
| 6 | 6 |
| 7 #include <stdint.h> | 7 #include <stdint.h> |
| 8 #include <tuple> | 8 #include <tuple> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 | 174 |
| 175 void DoTerminateProcess(const DoTerminateProcessCallback& callback) override { | 175 void DoTerminateProcess(const DoTerminateProcessCallback& callback) override { |
| 176 NOTREACHED(); | 176 NOTREACHED(); |
| 177 } | 177 } |
| 178 | 178 |
| 179 void CreateFolder(const CreateFolderCallback& callback) override { | 179 void CreateFolder(const CreateFolderCallback& callback) override { |
| 180 NOTREACHED(); | 180 NOTREACHED(); |
| 181 } | 181 } |
| 182 | 182 |
| 183 void GetRequestorName(const GetRequestorNameCallback& callback) override { | 183 void GetRequestorName(const GetRequestorNameCallback& callback) override { |
| 184 callback.Run(mojo::String("")); | 184 callback.Run(""); |
| 185 } | 185 } |
| 186 | 186 |
| 187 void CreateSharedBuffer(const std::string& message, | 187 void CreateSharedBuffer(const std::string& message, |
| 188 const CreateSharedBufferCallback& callback) override { | 188 const CreateSharedBufferCallback& callback) override { |
| 189 NOTREACHED(); | 189 NOTREACHED(); |
| 190 } | 190 } |
| 191 | 191 |
| 192 private: | 192 private: |
| 193 explicit TestServiceImpl() {} | 193 explicit TestServiceImpl() {} |
| 194 }; | 194 }; |
| (...skipping 1589 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1784 INSTANTIATE_TEST_CASE_P(ServiceWorkerFailToStartTest, | 1784 INSTANTIATE_TEST_CASE_P(ServiceWorkerFailToStartTest, |
| 1785 ServiceWorkerFailToStartTest, | 1785 ServiceWorkerFailToStartTest, |
| 1786 testing::Bool()); | 1786 testing::Bool()); |
| 1787 INSTANTIATE_TEST_CASE_P(ServiceWorkerNavigationHintUMATest, | 1787 INSTANTIATE_TEST_CASE_P(ServiceWorkerNavigationHintUMATest, |
| 1788 ServiceWorkerNavigationHintUMATest, | 1788 ServiceWorkerNavigationHintUMATest, |
| 1789 testing::Bool()); | 1789 testing::Bool()); |
| 1790 INSTANTIATE_TEST_CASE_P(ServiceWorkerStallInStoppingTest, | 1790 INSTANTIATE_TEST_CASE_P(ServiceWorkerStallInStoppingTest, |
| 1791 ServiceWorkerStallInStoppingTest, | 1791 ServiceWorkerStallInStoppingTest, |
| 1792 testing::Bool()); | 1792 testing::Bool()); |
| 1793 } // namespace content | 1793 } // namespace content |
| OLD | NEW |