chromium/extensions/test/test_content_script_load_waiter.h

// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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 {

// A single-use class to wait for content scripts to be loaded.
class ContentScriptLoadWaiter : public UserScriptLoader::Observer {};

}  // namespace extensions

#endif  // EXTENSIONS_TEST_TEST_CONTENT_SCRIPT_LOAD_WAITER_H_