#ifndef EXTENSIONS_TEST_TEST_CONTENT_SCRIPT_LOAD_WAITER_H_
#define EXTENSIONS_TEST_TEST_CONTENT_SCRIPT_LOAD_WAITER_H_
#include "base/run_loop.h"
#include "base/scoped_observation.h"
#include "extensions/browser/user_script_loader.h"
#include "extensions/common/mojom/host_id.mojom.h"
namespace content {
class BrowserContext;
}
namespace extensions {
class ContentScriptLoadWaiter : public UserScriptLoader::Observer {
public:
explicit ContentScriptLoadWaiter(UserScriptLoader* loader);
~ContentScriptLoadWaiter();
ContentScriptLoadWaiter(const ContentScriptLoadWaiter& other) = delete;
ContentScriptLoadWaiter& operator=(const ContentScriptLoadWaiter& other) =
delete;
void Wait();
private:
void OnScriptsLoaded(UserScriptLoader* loader,
content::BrowserContext* browser_context) override;
void OnUserScriptLoaderDestroyed(UserScriptLoader* loader) override;
mojom::HostID host_id_;
base::RunLoop run_loop_;
base::ScopedObservation<UserScriptLoader, UserScriptLoader::Observer>
loader_observation_{this};
};
}
#endif