blob: 829f3f656ad95eb09258046255ac373b2dc10ee8 [file] [log] [blame]
// Copyright 2019 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.
#ifndef CHROME_BROWSER_WEB_APPLICATIONS_TEST_SERVICE_WORKER_REGISTRATION_WAITER_H_
#define CHROME_BROWSER_WEB_APPLICATIONS_TEST_SERVICE_WORKER_REGISTRATION_WAITER_H_
#include "base/macros.h"
#include "base/run_loop.h"
#include "content/public/browser/service_worker_context_observer.h"
#include "url/gurl.h"
namespace content {
class BrowserContext;
class ServiceWorkerContext;
} // namespace content
namespace web_app {
class ServiceWorkerRegistrationWaiter
: public content::ServiceWorkerContextObserver {
public:
ServiceWorkerRegistrationWaiter(content::BrowserContext* browser_context,
const GURL& url);
~ServiceWorkerRegistrationWaiter() override;
void AwaitRegistration();
private:
// content::ServiceWorkerContextObserver:
void OnRegistrationCompleted(const GURL& pattern) override;
void OnDestruct(content::ServiceWorkerContext* context) override;
content::ServiceWorkerContext* service_worker_context_;
const GURL url_;
base::RunLoop run_loop_;
DISALLOW_COPY_AND_ASSIGN(ServiceWorkerRegistrationWaiter);
};
} // namespace web_app
#endif // CHROME_BROWSER_WEB_APPLICATIONS_TEST_SERVICE_WORKER_REGISTRATION_WAITER_H_