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

Side by Side Diff: content/public/test/service_worker_test_helpers.h

Issue 2943583002: [extension SW] Support lazy events from extension service workers. (Closed)
Patch Set: sync @tott Created 3 years, 5 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_PUBLIC_TEST_SERVICE_WORKER_TEST_OBSERVER_H_
6 #define CONTENT_PUBLIC_TEST_SERVICE_WORKER_TEST_OBSERVER_H_
7
8 #include "base/callback_forward.h"
9
10 class GURL;
11 namespace content {
12
13 class ServiceWorkerContext;
14
15 // Stops the active service worker of the registration whose scope is |pattern|,
16 // and calls |complete_callback_ui| callback on UI thread when done.
17 //
18 // Can be called from UI/IO thread.
19 void StopServiceWorkerForPattern(ServiceWorkerContext* context,
20 const GURL& pattern,
21 base::OnceClosure complete_callback_ui);
22
23 } // namespace content
24
25 #endif // CONTENT_PUBLIC_TEST_SERVICE_WORKER_TEST_OBSERVER_H_
OLDNEW
« no previous file with comments | « content/public/renderer/content_renderer_client.h ('k') | content/public/test/service_worker_test_helpers.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698