| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "extensions/browser/service_worker_manager.h" | 5 #include "extensions/browser/service_worker_manager.h" |
| 6 | 6 |
| 7 #include "base/bind.h" |
| 7 #include "content/public/browser/browser_context.h" | 8 #include "content/public/browser/browser_context.h" |
| 8 #include "content/public/browser/service_worker_context.h" | 9 #include "content/public/browser/service_worker_context.h" |
| 9 #include "content/public/browser/storage_partition.h" | 10 #include "content/public/browser/storage_partition.h" |
| 10 #include "extensions/browser/extension_registry.h" | 11 #include "extensions/browser/extension_registry.h" |
| 11 | 12 |
| 12 namespace extensions { | 13 namespace extensions { |
| 13 | 14 |
| 14 namespace { | 15 namespace { |
| 15 void EmptySuccessCallback(bool success) {} | 16 void EmptySuccessCallback(bool success) {} |
| 16 } | 17 } |
| (...skipping 24 matching lines...) Expand all Loading... |
| 41 // a) Keep track of extensions with registered service workers. | 42 // a) Keep track of extensions with registered service workers. |
| 42 // b) Add a callback to the (Un)SuspendServiceWorkersOnOrigin() method. | 43 // b) Add a callback to the (Un)SuspendServiceWorkersOnOrigin() method. |
| 43 // c) Check for any orphaned workers. | 44 // c) Check for any orphaned workers. |
| 44 content::BrowserContext::GetStoragePartitionForSite(browser_context_, | 45 content::BrowserContext::GetStoragePartitionForSite(browser_context_, |
| 45 extension->url()) | 46 extension->url()) |
| 46 ->GetServiceWorkerContext() | 47 ->GetServiceWorkerContext() |
| 47 ->DeleteForOrigin(extension->url(), base::Bind(&EmptySuccessCallback)); | 48 ->DeleteForOrigin(extension->url(), base::Bind(&EmptySuccessCallback)); |
| 48 } | 49 } |
| 49 | 50 |
| 50 } // namespace extensions | 51 } // namespace extensions |
| OLD | NEW |